|
a |
|
b/src/MISC/SyntheticData.ipynb |
|
|
1 |
{ |
|
|
2 |
"cells": [ |
|
|
3 |
{ |
|
|
4 |
"cell_type": "code", |
|
|
5 |
"execution_count": null, |
|
|
6 |
"metadata": {}, |
|
|
7 |
"outputs": [], |
|
|
8 |
"source": [ |
|
|
9 |
"import pandas as pd\n", |
|
|
10 |
"import re" |
|
|
11 |
] |
|
|
12 |
}, |
|
|
13 |
{ |
|
|
14 |
"cell_type": "code", |
|
|
15 |
"execution_count": null, |
|
|
16 |
"metadata": {}, |
|
|
17 |
"outputs": [], |
|
|
18 |
"source": [ |
|
|
19 |
"disease_codes = pd.read_csv(\"/mnt/cbib/EOSC4Cancer/MIMIC/mimic-iv-note-deidentified-free-text-clinical-notes-2.2/d_icd_diagnoses.csv\")\n", |
|
|
20 |
"patients_info = pd.read_csv(\"/mnt/cbib/EOSC4Cancer/MIMIC/mimic-iv-note-deidentified-free-text-clinical-notes-2.2/diagnoses_icd.csv\")\n", |
|
|
21 |
"pattern = r'\\b(?:malignant\\s+(?=.*\\b(?:colon|rect|rectum|rectal|anal|anus|hepatic flexure|cecum|appendix vermiformis|flexure|large intestine)\\b)|.*\\b(?:colon|rect|rectum|rectal|anal|anus|hepatic flexure|cecum|appendix vermiformis|flexure|large intestine)\\b\\s+malignant\\b)'\n", |
|
|
22 |
"crc_codes = disease_codes[disease_codes[\"long_title\"].str.contains(pattern, case=False, regex=True) & ~disease_codes[\"long_title\"].str.contains(\"skin\")]\n", |
|
|
23 |
"# Filtering the DataFrame using isin() function\n", |
|
|
24 |
"filtered_info = patients_info[patients_info['icd_code'].isin(crc_codes.icd_code.unique())]\n", |
|
|
25 |
"filtered_info.subject_id.unique()" |
|
|
26 |
] |
|
|
27 |
}, |
|
|
28 |
{ |
|
|
29 |
"cell_type": "code", |
|
|
30 |
"execution_count": null, |
|
|
31 |
"metadata": {}, |
|
|
32 |
"outputs": [], |
|
|
33 |
"source": [ |
|
|
34 |
"genie_data = pd.read_table(\"/mnt/cbib/EOSC4Cancer/GENIE_CBioPortal/data_mutations_extended.txt\")\n", |
|
|
35 |
"genie_crc_subjects = pd.read_csv(\"/mnt/cbib/EOSC4Cancer/GENIE_CBioPortal/crc_public_genie_bpc_clinical_data.tsv\", sep=\"\\t\")\n", |
|
|
36 |
"genie_crc_subjects = genie_crc_subjects[genie_crc_subjects[\"Sex\"]== \"Male\"]\n", |
|
|
37 |
"genie_data = genie_data[genie_data.Tumor_Sample_Barcode.isin(genie_crc_subjects[\"Sample ID\"].unique())]" |
|
|
38 |
] |
|
|
39 |
}, |
|
|
40 |
{ |
|
|
41 |
"cell_type": "code", |
|
|
42 |
"execution_count": null, |
|
|
43 |
"metadata": {}, |
|
|
44 |
"outputs": [], |
|
|
45 |
"source": [ |
|
|
46 |
"mimic_discharge_notes = pd.read_csv(\"/mnt/cbib/EOSC4Cancer/MIMIC/mimic-iv-note-deidentified-free-text-clinical-notes-2.2/note/discharge.csv\")\n", |
|
|
47 |
"mimic_discharge_notes = mimic_discharge_notes[mimic_discharge_notes.subject_id.isin(filtered_info.subject_id.unique())]\n", |
|
|
48 |
"mimic_radiology_notes = pd.read_csv(\"/mnt/cbib/EOSC4Cancer/MIMIC/mimic-iv-note-deidentified-free-text-clinical-notes-2.2/note/radiology.csv\")\n", |
|
|
49 |
"mimic_radiology_notes = mimic_radiology_notes[mimic_radiology_notes.subject_id.isin(filtered_info.subject_id.unique())]" |
|
|
50 |
] |
|
|
51 |
}, |
|
|
52 |
{ |
|
|
53 |
"cell_type": "code", |
|
|
54 |
"execution_count": null, |
|
|
55 |
"metadata": {}, |
|
|
56 |
"outputs": [], |
|
|
57 |
"source": [ |
|
|
58 |
"genie_data[[\"Tumor_Sample_Barcode\"]]\n", |
|
|
59 |
"\n", |
|
|
60 |
"import pandas as pd\n", |
|
|
61 |
"import random\n", |
|
|
62 |
"\n", |
|
|
63 |
"# Assuming df is your DataFrame and 'Group_Column' is the column used for grouping\n", |
|
|
64 |
"grouped_df = genie_data.groupby('Tumor_Sample_Barcode')\n", |
|
|
65 |
"\n", |
|
|
66 |
"# Selecting random elements from the group\n", |
|
|
67 |
"num_random_selections = 500 # Change this number to the desired number of random selections\n", |
|
|
68 |
"\n", |
|
|
69 |
"# Select random groups (not individual elements) based on the groups in 'Group_Column'\n", |
|
|
70 |
"group_keys = list(grouped_df.groups.keys())\n", |
|
|
71 |
"random_group_keys = random.sample(group_keys, num_random_selections)\n", |
|
|
72 |
"\n", |
|
|
73 |
"# Filter the original DataFrame based on the randomly selected groups\n", |
|
|
74 |
"genie_result_df = pd.concat([grouped_df.get_group(key) for key in random_group_keys])\n" |
|
|
75 |
] |
|
|
76 |
}, |
|
|
77 |
{ |
|
|
78 |
"cell_type": "code", |
|
|
79 |
"execution_count": null, |
|
|
80 |
"metadata": {}, |
|
|
81 |
"outputs": [], |
|
|
82 |
"source": [ |
|
|
83 |
"import pandas as pd\n", |
|
|
84 |
"import random\n", |
|
|
85 |
"\n", |
|
|
86 |
"# Assuming df is your DataFrame and 'Group_Column' is the column used for grouping\n", |
|
|
87 |
"grouped_df = mimic_discharge_notes.groupby('subject_id')\n", |
|
|
88 |
"\n", |
|
|
89 |
"# Selecting random elements from the group\n", |
|
|
90 |
"num_random_selections = 500 # Change this number to the desired number of random selections\n", |
|
|
91 |
"\n", |
|
|
92 |
"# Select random groups (not individual elements) based on the groups in 'Group_Column'\n", |
|
|
93 |
"group_keys = list(grouped_df.groups.keys())\n", |
|
|
94 |
"random_group_keys = random.sample(group_keys, num_random_selections)\n", |
|
|
95 |
"\n", |
|
|
96 |
"# Filter the original DataFrame based on the randomly selected groups\n", |
|
|
97 |
"mimic_result_df = pd.concat([grouped_df.get_group(key) for key in random_group_keys])\n", |
|
|
98 |
"pattern = r'Sex:\\s*M'\n", |
|
|
99 |
"mimic_result_df = mimic_result_df[mimic_result_df[\"text\"].str.contains(pattern, case=False, regex=True)]\n", |
|
|
100 |
"radiology_result_df = mimic_radiology_notes[mimic_radiology_notes[\"subject_id\"].isin(mimic_result_df[\"subject_id\"].unique())]\n" |
|
|
101 |
] |
|
|
102 |
}, |
|
|
103 |
{ |
|
|
104 |
"cell_type": "code", |
|
|
105 |
"execution_count": null, |
|
|
106 |
"metadata": {}, |
|
|
107 |
"outputs": [], |
|
|
108 |
"source": [ |
|
|
109 |
"import os\n", |
|
|
110 |
"\n", |
|
|
111 |
"# Assuming df is your DataFrame and 'Group_Column' is the column used for grouping\n", |
|
|
112 |
"clinical_grouped_df = mimic_result_df.groupby('subject_id')\n", |
|
|
113 |
"radiology_grouped_df = radiology_result_df.groupby('subject_id')\n", |
|
|
114 |
"\n", |
|
|
115 |
"all_zipped_data = []\n", |
|
|
116 |
"\n", |
|
|
117 |
"for key, group1 in clinical_grouped_df:\n", |
|
|
118 |
" if key in radiology_grouped_df.groups:\n", |
|
|
119 |
" group2 = radiology_grouped_df.get_group(key)\n", |
|
|
120 |
" zipped_data = zip(group1['subject_id'], group1['text'], group2['text'])\n", |
|
|
121 |
" all_zipped_data.extend(list(zipped_data))\n", |
|
|
122 |
" # Instead of iterating through zipped_data here, it's better to accumulate it in all_zipped_data\n", |
|
|
123 |
"names= []\n", |
|
|
124 |
"# Iterate through groups and save to separate CSV files\n", |
|
|
125 |
"for data in all_zipped_data:\n", |
|
|
126 |
" name, clinical_text, radiology_text = data\n", |
|
|
127 |
" names.append(name)\n", |
|
|
128 |
" new_directory = f\"/mnt/cbib/EOSC4Cancer/synthetic_data/{name}/\"\n", |
|
|
129 |
" os.makedirs(new_directory, exist_ok=True)\n", |
|
|
130 |
" file_name = f\"/mnt/cbib/EOSC4Cancer/synthetic_data/{name}/clinical_note.txt\" # Naming files based on group names\n", |
|
|
131 |
" with open(file_name, 'w') as file:\n", |
|
|
132 |
" # Write data to the file\n", |
|
|
133 |
" file.write(clinical_text)\n", |
|
|
134 |
" file.write(radiology_text)" |
|
|
135 |
] |
|
|
136 |
}, |
|
|
137 |
{ |
|
|
138 |
"cell_type": "code", |
|
|
139 |
"execution_count": null, |
|
|
140 |
"metadata": {}, |
|
|
141 |
"outputs": [], |
|
|
142 |
"source": [ |
|
|
143 |
"group1" |
|
|
144 |
] |
|
|
145 |
}, |
|
|
146 |
{ |
|
|
147 |
"cell_type": "code", |
|
|
148 |
"execution_count": null, |
|
|
149 |
"metadata": {}, |
|
|
150 |
"outputs": [], |
|
|
151 |
"source": [ |
|
|
152 |
"grouped_df = genie_result_df.groupby(\"Tumor_Sample_Barcode\")\n", |
|
|
153 |
"for name, (_, row) in zip(names, grouped_df):\n", |
|
|
154 |
" file_name = f\"/mnt/cbib/EOSC4Cancer/synthetic_data/{name}/mutations_data.csv\"\n", |
|
|
155 |
" row.to_csv(file_name)" |
|
|
156 |
] |
|
|
157 |
}, |
|
|
158 |
{ |
|
|
159 |
"cell_type": "code", |
|
|
160 |
"execution_count": null, |
|
|
161 |
"metadata": {}, |
|
|
162 |
"outputs": [], |
|
|
163 |
"source": [ |
|
|
164 |
"import re\n", |
|
|
165 |
"# remove annoying characters\n", |
|
|
166 |
"chars = {\n", |
|
|
167 |
" '\\xc2\\x82' : ',', # High code comma\n", |
|
|
168 |
" '\\xc2\\x84' : ',,', # High code double comma\n", |
|
|
169 |
" '\\xc2\\x85' : '...', # Tripple dot\n", |
|
|
170 |
" '\\xc2\\x88' : '^', # High carat\n", |
|
|
171 |
" '\\xc2\\x91' : '\\x27', # Forward single quote\n", |
|
|
172 |
" '\\xc2\\x92' : '\\x27', # Reverse single quote\n", |
|
|
173 |
" '\\xc2\\x93' : '\\x22', # Forward double quote\n", |
|
|
174 |
" '\\xc2\\x94' : '\\x22', # Reverse double quote\n", |
|
|
175 |
" '\\xc2\\x95' : ' ',\n", |
|
|
176 |
" '\\xc2\\x96' : '-', # High hyphen\n", |
|
|
177 |
" '\\xc2\\x97' : '--', # Double hyphen\n", |
|
|
178 |
" '\\xc2\\x99' : ' ',\n", |
|
|
179 |
" '\\xc2\\xa0' : ' ',\n", |
|
|
180 |
" '\\xc2\\xa6' : '|', # Split vertical bar\n", |
|
|
181 |
" '\\xc2\\xab' : '<<', # Double less than\n", |
|
|
182 |
" '\\xc2\\xbb' : '>>', # Double greater than\n", |
|
|
183 |
" '\\xc2\\xbc' : '1/4', # one quarter\n", |
|
|
184 |
" '\\xc2\\xbd' : '1/2', # one half\n", |
|
|
185 |
" '\\xc2\\xbe' : '3/4', # three quarters\n", |
|
|
186 |
" '\\xca\\xbf' : '\\x27', # c-single quote\n", |
|
|
187 |
" '\\xcc\\xa8' : '', # modifier - under curve\n", |
|
|
188 |
" '\\xcc\\xb1' : '', # modifier - under line\n", |
|
|
189 |
" '\\x95' : ' ',\n", |
|
|
190 |
"}\n", |
|
|
191 |
"def replace_chars(match):\n", |
|
|
192 |
" char = match.group(0)\n", |
|
|
193 |
" return chars[char]\n", |
|
|
194 |
"\n", |
|
|
195 |
"def remove_annoying_chars(text):\n", |
|
|
196 |
" pattern = '(' + '|'.join(chars.keys()) + ')'\n", |
|
|
197 |
" return re.sub(pattern, replace_chars, text)\n", |
|
|
198 |
"\n", |
|
|
199 |
"# Example usage:\n", |
|
|
200 |
"input_text = \"Your input text here with annoying characters...\"\n", |
|
|
201 |
"result_text = remove_annoying_chars(input_text)\n", |
|
|
202 |
"print(result_text)" |
|
|
203 |
] |
|
|
204 |
}, |
|
|
205 |
{ |
|
|
206 |
"cell_type": "code", |
|
|
207 |
"execution_count": null, |
|
|
208 |
"metadata": {}, |
|
|
209 |
"outputs": [], |
|
|
210 |
"source": [ |
|
|
211 |
"remove_annoying_chars(mimic_discharge_notes.iloc[10][\"text\"])" |
|
|
212 |
] |
|
|
213 |
}, |
|
|
214 |
{ |
|
|
215 |
"cell_type": "code", |
|
|
216 |
"execution_count": null, |
|
|
217 |
"metadata": {}, |
|
|
218 |
"outputs": [], |
|
|
219 |
"source": [ |
|
|
220 |
"mimic_discharge_notes.iloc[10][\"text\"].replace(\"\\n\\n\", \"\").replace(\"\\n\", \"\").replace(\"___\", \"\")" |
|
|
221 |
] |
|
|
222 |
}, |
|
|
223 |
{ |
|
|
224 |
"cell_type": "code", |
|
|
225 |
"execution_count": null, |
|
|
226 |
"metadata": {}, |
|
|
227 |
"outputs": [], |
|
|
228 |
"source": [ |
|
|
229 |
"from preprocessing_utils import split_text_to_sentences" |
|
|
230 |
] |
|
|
231 |
}, |
|
|
232 |
{ |
|
|
233 |
"cell_type": "code", |
|
|
234 |
"execution_count": null, |
|
|
235 |
"metadata": {}, |
|
|
236 |
"outputs": [], |
|
|
237 |
"source": [ |
|
|
238 |
"import utils\n", |
|
|
239 |
"REGEX_FILE = utils.load_regex_patterns(\"../data/regex_patterns.json\")\n", |
|
|
240 |
"wh = split_text_to_sentences(mimic_discharge_notes.iloc[0][\"text\"].replace(\"\\n \\n\", \"\\n\\n\").replace(\"_\", \"\\n\\n\").replace(\"===\", '\\n\\n'), REGEX_FILE)" |
|
|
241 |
] |
|
|
242 |
}, |
|
|
243 |
{ |
|
|
244 |
"cell_type": "code", |
|
|
245 |
"execution_count": null, |
|
|
246 |
"metadata": {}, |
|
|
247 |
"outputs": [], |
|
|
248 |
"source": [ |
|
|
249 |
"with open('/mnt/cbib/EOSC4Cancer/synthetic_data/10669816/clinical_note.txt') as f:\n", |
|
|
250 |
" lines = f.read()" |
|
|
251 |
] |
|
|
252 |
}, |
|
|
253 |
{ |
|
|
254 |
"cell_type": "code", |
|
|
255 |
"execution_count": null, |
|
|
256 |
"metadata": {}, |
|
|
257 |
"outputs": [], |
|
|
258 |
"source": [ |
|
|
259 |
"lines" |
|
|
260 |
] |
|
|
261 |
}, |
|
|
262 |
{ |
|
|
263 |
"cell_type": "code", |
|
|
264 |
"execution_count": 30, |
|
|
265 |
"metadata": {}, |
|
|
266 |
"outputs": [], |
|
|
267 |
"source": [ |
|
|
268 |
"import preprocess_clinical_notes" |
|
|
269 |
] |
|
|
270 |
}, |
|
|
271 |
{ |
|
|
272 |
"cell_type": "code", |
|
|
273 |
"execution_count": 62, |
|
|
274 |
"metadata": {}, |
|
|
275 |
"outputs": [], |
|
|
276 |
"source": [ |
|
|
277 |
"df = preprocess_clinical_notes.tokenize_clinical_note(id_list=[\"13791943\"], source_directory=\"/mnt/cbib/EOSC4Cancer/synthetic_data\")\n", |
|
|
278 |
"# df.to_csv(\"/mnt/cbib/EOSC4Cancer/synthetic_data/14014677/clinical_note.csv\")" |
|
|
279 |
] |
|
|
280 |
}, |
|
|
281 |
{ |
|
|
282 |
"cell_type": "code", |
|
|
283 |
"execution_count": 63, |
|
|
284 |
"metadata": {}, |
|
|
285 |
"outputs": [], |
|
|
286 |
"source": [ |
|
|
287 |
"fields = [\"Sex\", \"Allergies\", \"Cheif Complaint\", \"History of Present Illness\", \n", |
|
|
288 |
" \"Major Surgical or Invasive Procedure\", \"Past Medical History\", \"Family History\", \"IMAGING\", \n", |
|
|
289 |
" \"Brief Hospital Course\", \"Medications on Admission\", \"Discharge Medications\"]\n", |
|
|
290 |
"df = df[df[\"field\"].isin(fields)].dropna()" |
|
|
291 |
] |
|
|
292 |
}, |
|
|
293 |
{ |
|
|
294 |
"cell_type": "code", |
|
|
295 |
"execution_count": 64, |
|
|
296 |
"metadata": {}, |
|
|
297 |
"outputs": [ |
|
|
298 |
{ |
|
|
299 |
"data": { |
|
|
300 |
"text/html": [ |
|
|
301 |
"<div>\n", |
|
|
302 |
"<style scoped>\n", |
|
|
303 |
" .dataframe tbody tr th:only-of-type {\n", |
|
|
304 |
" vertical-align: middle;\n", |
|
|
305 |
" }\n", |
|
|
306 |
"\n", |
|
|
307 |
" .dataframe tbody tr th {\n", |
|
|
308 |
" vertical-align: top;\n", |
|
|
309 |
" }\n", |
|
|
310 |
"\n", |
|
|
311 |
" .dataframe thead th {\n", |
|
|
312 |
" text-align: right;\n", |
|
|
313 |
" }\n", |
|
|
314 |
"</style>\n", |
|
|
315 |
"<table border=\"1\" class=\"dataframe\">\n", |
|
|
316 |
" <thead>\n", |
|
|
317 |
" <tr style=\"text-align: right;\">\n", |
|
|
318 |
" <th></th>\n", |
|
|
319 |
" <th>field</th>\n", |
|
|
320 |
" <th>sentence</th>\n", |
|
|
321 |
" </tr>\n", |
|
|
322 |
" </thead>\n", |
|
|
323 |
" <tbody>\n", |
|
|
324 |
" <tr>\n", |
|
|
325 |
" <th>5</th>\n", |
|
|
326 |
" <td>Sex</td>\n", |
|
|
327 |
" <td>M</td>\n", |
|
|
328 |
" </tr>\n", |
|
|
329 |
" <tr>\n", |
|
|
330 |
" <th>7</th>\n", |
|
|
331 |
" <td>Allergies</td>\n", |
|
|
332 |
" <td>Patient recorded as having No Known Allergies...</td>\n", |
|
|
333 |
" </tr>\n", |
|
|
334 |
" <tr>\n", |
|
|
335 |
" <th>10</th>\n", |
|
|
336 |
" <td>Major Surgical or Invasive Procedure</td>\n", |
|
|
337 |
" <td>None</td>\n", |
|
|
338 |
" </tr>\n", |
|
|
339 |
" <tr>\n", |
|
|
340 |
" <th>11</th>\n", |
|
|
341 |
" <td>History of Present Illness</td>\n", |
|
|
342 |
" <td></td>\n", |
|
|
343 |
" </tr>\n", |
|
|
344 |
" <tr>\n", |
|
|
345 |
" <th>12</th>\n", |
|
|
346 |
" <td>History of Present Illness</td>\n", |
|
|
347 |
" <td>__</td>\n", |
|
|
348 |
" </tr>\n", |
|
|
349 |
" <tr>\n", |
|
|
350 |
" <th>13</th>\n", |
|
|
351 |
" <td>History of Present Illness</td>\n", |
|
|
352 |
" <td>is a</td>\n", |
|
|
353 |
" </tr>\n", |
|
|
354 |
" <tr>\n", |
|
|
355 |
" <th>14</th>\n", |
|
|
356 |
" <td>History of Present Illness</td>\n", |
|
|
357 |
" <td>__</td>\n", |
|
|
358 |
" </tr>\n", |
|
|
359 |
" <tr>\n", |
|
|
360 |
" <th>15</th>\n", |
|
|
361 |
" <td>History of Present Illness</td>\n", |
|
|
362 |
" <td>year old right handed male presenting with R h...</td>\n", |
|
|
363 |
" </tr>\n", |
|
|
364 |
" <tr>\n", |
|
|
365 |
" <th>16</th>\n", |
|
|
366 |
" <td>History of Present Illness</td>\n", |
|
|
367 |
" <td>He was last seen or heard from two days ago (</td>\n", |
|
|
368 |
" </tr>\n", |
|
|
369 |
" <tr>\n", |
|
|
370 |
" <th>17</th>\n", |
|
|
371 |
" <td>History of Present Illness</td>\n", |
|
|
372 |
" <td>__</td>\n", |
|
|
373 |
" </tr>\n", |
|
|
374 |
" <tr>\n", |
|
|
375 |
" <th>18</th>\n", |
|
|
376 |
" <td>History of Present Illness</td>\n", |
|
|
377 |
" <td>Today his grandson went to his home to do some...</td>\n", |
|
|
378 |
" </tr>\n", |
|
|
379 |
" <tr>\n", |
|
|
380 |
" <th>19</th>\n", |
|
|
381 |
" <td>History of Present Illness</td>\n", |
|
|
382 |
" <td>He was later found minimally conscious on the ...</td>\n", |
|
|
383 |
" </tr>\n", |
|
|
384 |
" <tr>\n", |
|
|
385 |
" <th>20</th>\n", |
|
|
386 |
" <td>History of Present Illness</td>\n", |
|
|
387 |
" <td>He was taken to</td>\n", |
|
|
388 |
" </tr>\n", |
|
|
389 |
" <tr>\n", |
|
|
390 |
" <th>21</th>\n", |
|
|
391 |
" <td>History of Present Illness</td>\n", |
|
|
392 |
" <td>__</td>\n", |
|
|
393 |
" </tr>\n", |
|
|
394 |
" <tr>\n", |
|
|
395 |
" <th>22</th>\n", |
|
|
396 |
" <td>History of Present Illness</td>\n", |
|
|
397 |
" <td>where a head CT revealed a large R hemisphere ...</td>\n", |
|
|
398 |
" </tr>\n", |
|
|
399 |
" <tr>\n", |
|
|
400 |
" <th>23</th>\n", |
|
|
401 |
" <td>History of Present Illness</td>\n", |
|
|
402 |
" <td>At</td>\n", |
|
|
403 |
" </tr>\n", |
|
|
404 |
" <tr>\n", |
|
|
405 |
" <th>24</th>\n", |
|
|
406 |
" <td>History of Present Illness</td>\n", |
|
|
407 |
" <td>__</td>\n", |
|
|
408 |
" </tr>\n", |
|
|
409 |
" <tr>\n", |
|
|
410 |
" <th>25</th>\n", |
|
|
411 |
" <td>History of Present Illness</td>\n", |
|
|
412 |
" <td>he was apparently able speak in simple phrases...</td>\n", |
|
|
413 |
" </tr>\n", |
|
|
414 |
" <tr>\n", |
|
|
415 |
" <th>26</th>\n", |
|
|
416 |
" <td>History of Present Illness</td>\n", |
|
|
417 |
" <td>He was given vec succ fentanyl midaz mannitol ...</td>\n", |
|
|
418 |
" </tr>\n", |
|
|
419 |
" <tr>\n", |
|
|
420 |
" <th>27</th>\n", |
|
|
421 |
" <td>History of Present Illness</td>\n", |
|
|
422 |
" <td>__</td>\n", |
|
|
423 |
" </tr>\n", |
|
|
424 |
" <tr>\n", |
|
|
425 |
" <th>28</th>\n", |
|
|
426 |
" <td>History of Present Illness</td>\n", |
|
|
427 |
" <td>Repeat Head CT revealed decrompression of the ...</td>\n", |
|
|
428 |
" </tr>\n", |
|
|
429 |
" <tr>\n", |
|
|
430 |
" <th>32</th>\n", |
|
|
431 |
" <td>Past Medical History</td>\n", |
|
|
432 |
" <td></td>\n", |
|
|
433 |
" </tr>\n", |
|
|
434 |
" <tr>\n", |
|
|
435 |
" <th>33</th>\n", |
|
|
436 |
" <td>Past Medical History</td>\n", |
|
|
437 |
" <td>Hypertension</td>\n", |
|
|
438 |
" </tr>\n", |
|
|
439 |
" <tr>\n", |
|
|
440 |
" <th>34</th>\n", |
|
|
441 |
" <td>Past Medical History</td>\n", |
|
|
442 |
" <td>BPH</td>\n", |
|
|
443 |
" </tr>\n", |
|
|
444 |
" <tr>\n", |
|
|
445 |
" <th>36</th>\n", |
|
|
446 |
" <td>Family History</td>\n", |
|
|
447 |
" <td></td>\n", |
|
|
448 |
" </tr>\n", |
|
|
449 |
" <tr>\n", |
|
|
450 |
" <th>110</th>\n", |
|
|
451 |
" <td>Brief Hospital Course</td>\n", |
|
|
452 |
" <td></td>\n", |
|
|
453 |
" </tr>\n", |
|
|
454 |
" <tr>\n", |
|
|
455 |
" <th>111</th>\n", |
|
|
456 |
" <td>Brief Hospital Course</td>\n", |
|
|
457 |
" <td>RHM with large multifocal R hemisphere hemorrh...</td>\n", |
|
|
458 |
" </tr>\n", |
|
|
459 |
" <tr>\n", |
|
|
460 |
" <th>112</th>\n", |
|
|
461 |
" <td>Brief Hospital Course</td>\n", |
|
|
462 |
" <td>CT head showed two large right frontal intrap...</td>\n", |
|
|
463 |
" </tr>\n", |
|
|
464 |
" <tr>\n", |
|
|
465 |
" <th>113</th>\n", |
|
|
466 |
" <td>Brief Hospital Course</td>\n", |
|
|
467 |
" <td>largest measures 6.2 x 2.7 cm with an adjacen...</td>\n", |
|
|
468 |
" </tr>\n", |
|
|
469 |
" <tr>\n", |
|
|
470 |
" <th>114</th>\n", |
|
|
471 |
" <td>Brief Hospital Course</td>\n", |
|
|
472 |
" <td>3 mm leftward shift of the septum pellucidum</td>\n", |
|
|
473 |
" </tr>\n", |
|
|
474 |
" <tr>\n", |
|
|
475 |
" <th>115</th>\n", |
|
|
476 |
" <td>Brief Hospital Course</td>\n", |
|
|
477 |
" <td>right frontal subarrachnoid hemrrhage measurin...</td>\n", |
|
|
478 |
" </tr>\n", |
|
|
479 |
" <tr>\n", |
|
|
480 |
" <th>116</th>\n", |
|
|
481 |
" <td>Brief Hospital Course</td>\n", |
|
|
482 |
" <td>Intraventricular extension of hemorrhage in th...</td>\n", |
|
|
483 |
" </tr>\n", |
|
|
484 |
" <tr>\n", |
|
|
485 |
" <th>117</th>\n", |
|
|
486 |
" <td>Brief Hospital Course</td>\n", |
|
|
487 |
" <td>Because of the severity of the case and patien...</td>\n", |
|
|
488 |
" </tr>\n", |
|
|
489 |
" <tr>\n", |
|
|
490 |
" <th>118</th>\n", |
|
|
491 |
" <td>Brief Hospital Course</td>\n", |
|
|
492 |
" <td>__</td>\n", |
|
|
493 |
" </tr>\n", |
|
|
494 |
" <tr>\n", |
|
|
495 |
" <th>119</th>\n", |
|
|
496 |
" <td>Medications on Admission</td>\n", |
|
|
497 |
" <td></td>\n", |
|
|
498 |
" </tr>\n", |
|
|
499 |
" <tr>\n", |
|
|
500 |
" <th>120</th>\n", |
|
|
501 |
" <td>Medications on Admission</td>\n", |
|
|
502 |
" <td>Diltiazem 240mg daily</td>\n", |
|
|
503 |
" </tr>\n", |
|
|
504 |
" <tr>\n", |
|
|
505 |
" <th>121</th>\n", |
|
|
506 |
" <td>Medications on Admission</td>\n", |
|
|
507 |
" <td>Finasteride 5mg daily</td>\n", |
|
|
508 |
" </tr>\n", |
|
|
509 |
" <tr>\n", |
|
|
510 |
" <th>122</th>\n", |
|
|
511 |
" <td>Medications on Admission</td>\n", |
|
|
512 |
" <td>Digoxin 0.125mg daily</td>\n", |
|
|
513 |
" </tr>\n", |
|
|
514 |
" <tr>\n", |
|
|
515 |
" <th>123</th>\n", |
|
|
516 |
" <td>Medications on Admission</td>\n", |
|
|
517 |
" <td>Metoprolol 50mg daily</td>\n", |
|
|
518 |
" </tr>\n", |
|
|
519 |
" <tr>\n", |
|
|
520 |
" <th>124</th>\n", |
|
|
521 |
" <td>Medications on Admission</td>\n", |
|
|
522 |
" <td>Lasix 20mg daily</td>\n", |
|
|
523 |
" </tr>\n", |
|
|
524 |
" <tr>\n", |
|
|
525 |
" <th>125</th>\n", |
|
|
526 |
" <td>Discharge Medications</td>\n", |
|
|
527 |
" <td>expired</td>\n", |
|
|
528 |
" </tr>\n", |
|
|
529 |
" </tbody>\n", |
|
|
530 |
"</table>\n", |
|
|
531 |
"</div>" |
|
|
532 |
], |
|
|
533 |
"text/plain": [ |
|
|
534 |
" field \\\n", |
|
|
535 |
"5 Sex \n", |
|
|
536 |
"7 Allergies \n", |
|
|
537 |
"10 Major Surgical or Invasive Procedure \n", |
|
|
538 |
"11 History of Present Illness \n", |
|
|
539 |
"12 History of Present Illness \n", |
|
|
540 |
"13 History of Present Illness \n", |
|
|
541 |
"14 History of Present Illness \n", |
|
|
542 |
"15 History of Present Illness \n", |
|
|
543 |
"16 History of Present Illness \n", |
|
|
544 |
"17 History of Present Illness \n", |
|
|
545 |
"18 History of Present Illness \n", |
|
|
546 |
"19 History of Present Illness \n", |
|
|
547 |
"20 History of Present Illness \n", |
|
|
548 |
"21 History of Present Illness \n", |
|
|
549 |
"22 History of Present Illness \n", |
|
|
550 |
"23 History of Present Illness \n", |
|
|
551 |
"24 History of Present Illness \n", |
|
|
552 |
"25 History of Present Illness \n", |
|
|
553 |
"26 History of Present Illness \n", |
|
|
554 |
"27 History of Present Illness \n", |
|
|
555 |
"28 History of Present Illness \n", |
|
|
556 |
"32 Past Medical History \n", |
|
|
557 |
"33 Past Medical History \n", |
|
|
558 |
"34 Past Medical History \n", |
|
|
559 |
"36 Family History \n", |
|
|
560 |
"110 Brief Hospital Course \n", |
|
|
561 |
"111 Brief Hospital Course \n", |
|
|
562 |
"112 Brief Hospital Course \n", |
|
|
563 |
"113 Brief Hospital Course \n", |
|
|
564 |
"114 Brief Hospital Course \n", |
|
|
565 |
"115 Brief Hospital Course \n", |
|
|
566 |
"116 Brief Hospital Course \n", |
|
|
567 |
"117 Brief Hospital Course \n", |
|
|
568 |
"118 Brief Hospital Course \n", |
|
|
569 |
"119 Medications on Admission \n", |
|
|
570 |
"120 Medications on Admission \n", |
|
|
571 |
"121 Medications on Admission \n", |
|
|
572 |
"122 Medications on Admission \n", |
|
|
573 |
"123 Medications on Admission \n", |
|
|
574 |
"124 Medications on Admission \n", |
|
|
575 |
"125 Discharge Medications \n", |
|
|
576 |
"\n", |
|
|
577 |
" sentence \n", |
|
|
578 |
"5 M \n", |
|
|
579 |
"7 Patient recorded as having No Known Allergies... \n", |
|
|
580 |
"10 None \n", |
|
|
581 |
"11 \n", |
|
|
582 |
"12 __ \n", |
|
|
583 |
"13 is a \n", |
|
|
584 |
"14 __ \n", |
|
|
585 |
"15 year old right handed male presenting with R h... \n", |
|
|
586 |
"16 He was last seen or heard from two days ago ( \n", |
|
|
587 |
"17 __ \n", |
|
|
588 |
"18 Today his grandson went to his home to do some... \n", |
|
|
589 |
"19 He was later found minimally conscious on the ... \n", |
|
|
590 |
"20 He was taken to \n", |
|
|
591 |
"21 __ \n", |
|
|
592 |
"22 where a head CT revealed a large R hemisphere ... \n", |
|
|
593 |
"23 At \n", |
|
|
594 |
"24 __ \n", |
|
|
595 |
"25 he was apparently able speak in simple phrases... \n", |
|
|
596 |
"26 He was given vec succ fentanyl midaz mannitol ... \n", |
|
|
597 |
"27 __ \n", |
|
|
598 |
"28 Repeat Head CT revealed decrompression of the ... \n", |
|
|
599 |
"32 \n", |
|
|
600 |
"33 Hypertension \n", |
|
|
601 |
"34 BPH \n", |
|
|
602 |
"36 \n", |
|
|
603 |
"110 \n", |
|
|
604 |
"111 RHM with large multifocal R hemisphere hemorrh... \n", |
|
|
605 |
"112 CT head showed two large right frontal intrap... \n", |
|
|
606 |
"113 largest measures 6.2 x 2.7 cm with an adjacen... \n", |
|
|
607 |
"114 3 mm leftward shift of the septum pellucidum \n", |
|
|
608 |
"115 right frontal subarrachnoid hemrrhage measurin... \n", |
|
|
609 |
"116 Intraventricular extension of hemorrhage in th... \n", |
|
|
610 |
"117 Because of the severity of the case and patien... \n", |
|
|
611 |
"118 __ \n", |
|
|
612 |
"119 \n", |
|
|
613 |
"120 Diltiazem 240mg daily \n", |
|
|
614 |
"121 Finasteride 5mg daily \n", |
|
|
615 |
"122 Digoxin 0.125mg daily \n", |
|
|
616 |
"123 Metoprolol 50mg daily \n", |
|
|
617 |
"124 Lasix 20mg daily \n", |
|
|
618 |
"125 expired " |
|
|
619 |
] |
|
|
620 |
}, |
|
|
621 |
"execution_count": 64, |
|
|
622 |
"metadata": {}, |
|
|
623 |
"output_type": "execute_result" |
|
|
624 |
} |
|
|
625 |
], |
|
|
626 |
"source": [ |
|
|
627 |
"df[[\"field\", \"sentence\"]]" |
|
|
628 |
] |
|
|
629 |
}, |
|
|
630 |
{ |
|
|
631 |
"cell_type": "code", |
|
|
632 |
"execution_count": 59, |
|
|
633 |
"metadata": {}, |
|
|
634 |
"outputs": [], |
|
|
635 |
"source": [ |
|
|
636 |
"result_dict = df.groupby('field', sort=False)['sentence'].apply(list).to_dict()" |
|
|
637 |
] |
|
|
638 |
}, |
|
|
639 |
{ |
|
|
640 |
"cell_type": "code", |
|
|
641 |
"execution_count": 61, |
|
|
642 |
"metadata": {}, |
|
|
643 |
"outputs": [ |
|
|
644 |
{ |
|
|
645 |
"data": { |
|
|
646 |
"text/plain": [ |
|
|
647 |
"{'Sex': [' F'],\n", |
|
|
648 |
" 'Allergies': [' Influenza Virus Vaccines'],\n", |
|
|
649 |
" 'Major Surgical or Invasive Procedure': [''],\n", |
|
|
650 |
" 'History of Present Illness': ['',\n", |
|
|
651 |
" 'yo F w/ endometrial CA w/ met to abd wall radiation colitis bladder CA s/p resection & BCG HTN hypothyroidism h/o L MCA thrombotic CVA w/o residual deficits enterovesical fistula s/p b/l nephrostomy tubes & ostomy who presents with decreased oral intake for over 1 week and right sided neck pain',\n", |
|
|
652 |
" 'She states that she had increasing pain that caused her to take Oxycodone 5mg',\n", |
|
|
653 |
" 'BID rather than just once a day',\n", |
|
|
654 |
" 'She has chronic dry mouth also takes a lot of medications with a common side effect of dry mouth from all of them along with chronic poor dentition - which she has yet to see a dentist for',\n", |
|
|
655 |
" 'Due to inability to eat for past 5 days son brought her to the ER to be evaluated',\n", |
|
|
656 |
" 'She denies any fever chills abdominal pain difficulty swallowing',\n", |
|
|
657 |
" 'She has +difficulty chewing due to pain has no dentures and + nausea after eating meals where she would throw up about 20% of her meals',\n", |
|
|
658 |
" 'In the ER she had a CT neck without contrast that confirmed acute parotiditis of the right side started on broad spectrum antibotics of Zosyn and Vancomycin along IV NS bolus X 1 and admitted to medicine due to acute infection and',\n", |
|
|
659 |
" '__',\n", |
|
|
660 |
" 'from acute dehydration',\n", |
|
|
661 |
" 'Today she feels pain is still pretty severe but does feel better with Oxycodone',\n", |
|
|
662 |
" 'She has eaten very little this AM - only applesauce and drinking fluids due to the pain',\n", |
|
|
663 |
" 'She denies ever having this before but does admit to chronic dry mouth and poor dental hygiene',\n", |
|
|
664 |
" '__',\n", |
|
|
665 |
" ' chronic pain - treated as outpatient with Oxycodone chronic itching of lower back where nephrostomy tubes are - treated with Gabapentin Oxycodone and Lidocaine cream All else negative'],\n", |
|
|
666 |
" 'Past Medical History': ['',\n", |
|
|
667 |
" 'Recurrent endometrial carcinoma with metastasis to the abdominal wall treated with XRT chemo (tamoxifen megace) surgical resection',\n", |
|
|
668 |
" 'Initial diagnosis in',\n", |
|
|
669 |
" '__',\n", |
|
|
670 |
" '2. radiation colitis',\n", |
|
|
671 |
" '3. neurogenic bladder with chronic indwelling catheter since',\n", |
|
|
672 |
" '__',\n", |
|
|
673 |
" \" d/c'ed\",\n", |
|
|
674 |
" '__',\n", |
|
|
675 |
" ' with B/L nephrostomy tube placements last replaced on',\n", |
|
|
676 |
" '__',\n", |
|
|
677 |
" 'by urology',\n", |
|
|
678 |
" '4. bladder cancer post-resection and BCG',\n", |
|
|
679 |
" '5. recurrent CAUTIs',\n", |
|
|
680 |
" 'Systemic hypertension',\n", |
|
|
681 |
" '7. hypothyroidism',\n", |
|
|
682 |
" '8. chronic anemia',\n", |
|
|
683 |
" '9. chronic insomnia',\n", |
|
|
684 |
" '10. history of left MCA thrombotic stroke with no residual deficits',\n", |
|
|
685 |
" '11',\n", |
|
|
686 |
" 'Enterovesicular fistula',\n", |
|
|
687 |
" '12',\n", |
|
|
688 |
" 'Colostomy',\n", |
|
|
689 |
" '__',\n", |
|
|
690 |
" '13: chronic pruritis'],\n", |
|
|
691 |
" 'Family History': ['', 'Mother - metastatic breast cancer'],\n", |
|
|
692 |
" 'IMAGING': ['', '__', '4:30', '__', 'CT NECK W/O CONTRAST (EG:', '__'],\n", |
|
|
693 |
" 'Brief Hospital Course': ['',\n", |
|
|
694 |
" 'with metastatic endometrial cancer bladder cancer radiation colitis s/p partial colectomy/end ileostomy colovesical fistula bilateral PCNs and L MCA stroke presenting with face and neck swelling found to have parotitis c/b',\n", |
|
|
695 |
" '__',\n", |
|
|
696 |
" 'She was managed conservatively with IV antibiotics Vanc/Unasyn (+ve',\n", |
|
|
697 |
" 'MRSA swab in',\n", |
|
|
698 |
" '__',\n", |
|
|
699 |
" ' successfully transitioned to PO',\n", |
|
|
700 |
" 'Bactrim/Augmentin',\n", |
|
|
701 |
" 'She was also noted to have',\n", |
|
|
702 |
" '__',\n", |
|
|
703 |
" 'which improved with fluids',\n", |
|
|
704 |
" 'Finally she was non-adherent to some of her outpatient medical instructions - bicarb tabs iron supplementation low K+ diet',\n", |
|
|
705 |
" 'Bicarb tabs were restarted with good effect',\n", |
|
|
706 |
" 'Iron supplementation was initiated and encouraged',\n", |
|
|
707 |
" 'K+ stable without dietary resctrictions',\n", |
|
|
708 |
" 'On HD4 patient anticipating discharge noted to have loose stools',\n", |
|
|
709 |
" 'This was felt likely to be side effect of medications as the patient had no systemic signs of infection and no abdominal pain',\n", |
|
|
710 |
" 'However out of an abundance of caution C diff studies were sent',\n", |
|
|
711 |
" 'The patient was discharged home in stable condition'],\n", |
|
|
712 |
" 'Medications on Admission': ['',\n", |
|
|
713 |
" 'Acetaminophen 1000 mg PO DAILY:PRN Pain - Mild',\n", |
|
|
714 |
" 'Aspirin 81 mg PO MWF',\n", |
|
|
715 |
" 'Ferrous Sulfate 325 mg PO DAILY',\n", |
|
|
716 |
" 'Gabapentin 300 mg PO QHS',\n", |
|
|
717 |
" 'Gabapentin 100 mg PO QAM',\n", |
|
|
718 |
" 'Levothyroxine Sodium 75 mcg PO DAILY',\n", |
|
|
719 |
" 'Metoprolol Succinate XL 25 mg PO DAILY',\n", |
|
|
720 |
" 'Sodium Bicarbonate 650 mg PO TID',\n", |
|
|
721 |
" 'Loratadine 10 mg PO EVERY OTHER DAY',\n", |
|
|
722 |
" '10',\n", |
|
|
723 |
" 'Ranitidine 75 mg PO DAILY',\n", |
|
|
724 |
" '11',\n", |
|
|
725 |
" 'Ciprofloxacin HCl 250 mg PO Q24H',\n", |
|
|
726 |
" '12. diclofenac sodium 1 % to knees DAILY:PRN',\n", |
|
|
727 |
" '13',\n", |
|
|
728 |
" 'OxyCODONE (Immediate Release) 5 mg PO TID:PRN Pain -',\n", |
|
|
729 |
" 'Moderate'],\n", |
|
|
730 |
" 'Discharge Medications': ['',\n", |
|
|
731 |
" 'Days complete 7d course (d1',\n", |
|
|
732 |
" '__',\n", |
|
|
733 |
" 'RX *amoxicillin-pot clavulanate [Augmentin] 250 mg-62.5 mg/5 mL 5 mL by mouth every twelve (12) hours Disp',\n", |
|
|
734 |
" '__',\n", |
|
|
735 |
" 'Milliliter']}" |
|
|
736 |
] |
|
|
737 |
}, |
|
|
738 |
"execution_count": 61, |
|
|
739 |
"metadata": {}, |
|
|
740 |
"output_type": "execute_result" |
|
|
741 |
} |
|
|
742 |
], |
|
|
743 |
"source": [ |
|
|
744 |
"result_dict" |
|
|
745 |
] |
|
|
746 |
}, |
|
|
747 |
{ |
|
|
748 |
"cell_type": "code", |
|
|
749 |
"execution_count": 60, |
|
|
750 |
"metadata": {}, |
|
|
751 |
"outputs": [ |
|
|
752 |
{ |
|
|
753 |
"ename": "KeyboardInterrupt", |
|
|
754 |
"evalue": "", |
|
|
755 |
"output_type": "error", |
|
|
756 |
"traceback": [ |
|
|
757 |
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", |
|
|
758 |
"\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", |
|
|
759 |
"\u001b[1;32m/home/mabdallah/TrialMatchAI/src/SyntheticData.ipynb Cell 22\u001b[0m line \u001b[0;36m5\n\u001b[1;32m <a href='vscode-notebook-cell://ssh-remote%2Bbaracuda/home/mabdallah/TrialMatchAI/src/SyntheticData.ipynb#X32sdnNjb2RlLXJlbW90ZQ%3D%3D?line=1'>2</a>\u001b[0m \u001b[39mfrom\u001b[39;00m \u001b[39mlangchain_community\u001b[39;00m\u001b[39m.\u001b[39;00m\u001b[39mdocument_loaders\u001b[39;00m \u001b[39mimport\u001b[39;00m DirectoryLoader\n\u001b[1;32m <a href='vscode-notebook-cell://ssh-remote%2Bbaracuda/home/mabdallah/TrialMatchAI/src/SyntheticData.ipynb#X32sdnNjb2RlLXJlbW90ZQ%3D%3D?line=3'>4</a>\u001b[0m loader \u001b[39m=\u001b[39m DirectoryLoader(\u001b[39m'\u001b[39m\u001b[39m/mnt/cbib/EOSC4Cancer/synthetic_data/\u001b[39m\u001b[39m'\u001b[39m, glob\u001b[39m=\u001b[39m\u001b[39m\"\u001b[39m\u001b[39m**/*.txt\u001b[39m\u001b[39m\"\u001b[39m)\n\u001b[0;32m----> <a href='vscode-notebook-cell://ssh-remote%2Bbaracuda/home/mabdallah/TrialMatchAI/src/SyntheticData.ipynb#X32sdnNjb2RlLXJlbW90ZQ%3D%3D?line=4'>5</a>\u001b[0m documents \u001b[39m=\u001b[39m loader\u001b[39m.\u001b[39;49mload()\n", |
|
|
760 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/langchain_community/document_loaders/directory.py:194\u001b[0m, in \u001b[0;36mDirectoryLoader.load\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 192\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[1;32m 193\u001b[0m \u001b[39mfor\u001b[39;00m i \u001b[39min\u001b[39;00m items:\n\u001b[0;32m--> 194\u001b[0m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mload_file(i, p, docs, pbar)\n\u001b[1;32m 196\u001b[0m \u001b[39mif\u001b[39;00m pbar:\n\u001b[1;32m 197\u001b[0m pbar\u001b[39m.\u001b[39mclose()\n", |
|
|
761 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/langchain_community/document_loaders/directory.py:130\u001b[0m, in \u001b[0;36mDirectoryLoader.load_file\u001b[0;34m(self, item, path, docs, pbar)\u001b[0m\n\u001b[1;32m 128\u001b[0m \u001b[39mtry\u001b[39;00m:\n\u001b[1;32m 129\u001b[0m logger\u001b[39m.\u001b[39mdebug(\u001b[39mf\u001b[39m\u001b[39m\"\u001b[39m\u001b[39mProcessing file: \u001b[39m\u001b[39m{\u001b[39;00m\u001b[39mstr\u001b[39m(item)\u001b[39m}\u001b[39;00m\u001b[39m\"\u001b[39m)\n\u001b[0;32m--> 130\u001b[0m sub_docs \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mloader_cls(\u001b[39mstr\u001b[39;49m(item), \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mloader_kwargs)\u001b[39m.\u001b[39;49mload()\n\u001b[1;32m 131\u001b[0m docs\u001b[39m.\u001b[39mextend(sub_docs)\n\u001b[1;32m 132\u001b[0m \u001b[39mexcept\u001b[39;00m \u001b[39mException\u001b[39;00m \u001b[39mas\u001b[39;00m e:\n", |
|
|
762 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/langchain_community/document_loaders/unstructured.py:87\u001b[0m, in \u001b[0;36mUnstructuredBaseLoader.load\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 85\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mload\u001b[39m(\u001b[39mself\u001b[39m) \u001b[39m-\u001b[39m\u001b[39m>\u001b[39m List[Document]:\n\u001b[1;32m 86\u001b[0m \u001b[39m \u001b[39m\u001b[39m\"\"\"Load file.\"\"\"\u001b[39;00m\n\u001b[0;32m---> 87\u001b[0m elements \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_get_elements()\n\u001b[1;32m 88\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_post_process_elements(elements)\n\u001b[1;32m 89\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mmode \u001b[39m==\u001b[39m \u001b[39m\"\u001b[39m\u001b[39melements\u001b[39m\u001b[39m\"\u001b[39m:\n", |
|
|
763 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/langchain_community/document_loaders/unstructured.py:179\u001b[0m, in \u001b[0;36mUnstructuredFileLoader._get_elements\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 177\u001b[0m \u001b[39mreturn\u001b[39;00m elements\n\u001b[1;32m 178\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m--> 179\u001b[0m \u001b[39mreturn\u001b[39;00m partition(filename\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mfile_path, \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49munstructured_kwargs)\n", |
|
|
764 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/partition/auto.py:434\u001b[0m, in \u001b[0;36mpartition\u001b[0;34m(filename, content_type, file, file_filename, url, include_page_breaks, strategy, encoding, paragraph_grouper, headers, skip_infer_table_types, ssl_verify, ocr_languages, languages, detect_language_per_element, pdf_infer_table_structure, extract_images_in_pdf, extract_image_block_types, extract_image_block_output_dir, extract_image_block_to_payload, xml_keep_tags, data_source_metadata, metadata_filename, request_timeout, hi_res_model_name, model_name, **kwargs)\u001b[0m\n\u001b[1;32m 418\u001b[0m elements \u001b[39m=\u001b[39m partition_image(\n\u001b[1;32m 419\u001b[0m filename\u001b[39m=\u001b[39mfilename, \u001b[39m# type: ignore\u001b[39;00m\n\u001b[1;32m 420\u001b[0m file\u001b[39m=\u001b[39mfile, \u001b[39m# type: ignore\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 431\u001b[0m \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs,\n\u001b[1;32m 432\u001b[0m )\n\u001b[1;32m 433\u001b[0m \u001b[39melif\u001b[39;00m filetype \u001b[39m==\u001b[39m FileType\u001b[39m.\u001b[39mTXT:\n\u001b[0;32m--> 434\u001b[0m elements \u001b[39m=\u001b[39m partition_text(\n\u001b[1;32m 435\u001b[0m filename\u001b[39m=\u001b[39;49mfilename,\n\u001b[1;32m 436\u001b[0m file\u001b[39m=\u001b[39;49mfile,\n\u001b[1;32m 437\u001b[0m encoding\u001b[39m=\u001b[39;49mencoding,\n\u001b[1;32m 438\u001b[0m paragraph_grouper\u001b[39m=\u001b[39;49mparagraph_grouper,\n\u001b[1;32m 439\u001b[0m languages\u001b[39m=\u001b[39;49mlanguages,\n\u001b[1;32m 440\u001b[0m detect_language_per_element\u001b[39m=\u001b[39;49mdetect_language_per_element,\n\u001b[1;32m 441\u001b[0m \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 443\u001b[0m \u001b[39melif\u001b[39;00m filetype \u001b[39m==\u001b[39m FileType\u001b[39m.\u001b[39mRTF:\n\u001b[1;32m 444\u001b[0m _partition_rtf \u001b[39m=\u001b[39m _get_partition_with_extras(\u001b[39m\"\u001b[39m\u001b[39mrtf\u001b[39m\u001b[39m\"\u001b[39m)\n", |
|
|
765 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/partition/text.py:93\u001b[0m, in \u001b[0;36mpartition_text\u001b[0;34m(filename, file, text, encoding, paragraph_grouper, metadata_filename, include_metadata, languages, max_partition, min_partition, metadata_last_modified, chunking_strategy, detect_language_per_element, detection_origin, **kwargs)\u001b[0m\n\u001b[1;32m 43\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mpartition_text\u001b[39m(\n\u001b[1;32m 44\u001b[0m filename: Optional[\u001b[39mstr\u001b[39m] \u001b[39m=\u001b[39m \u001b[39mNone\u001b[39;00m,\n\u001b[1;32m 45\u001b[0m file: Optional[IO[\u001b[39mbytes\u001b[39m]] \u001b[39m=\u001b[39m \u001b[39mNone\u001b[39;00m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 58\u001b[0m \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs: Any,\n\u001b[1;32m 59\u001b[0m ) \u001b[39m-\u001b[39m\u001b[39m>\u001b[39m List[Element]:\n\u001b[1;32m 60\u001b[0m \u001b[39m \u001b[39m\u001b[39m\"\"\"Partitions an .txt documents into its constituent paragraph elements.\u001b[39;00m\n\u001b[1;32m 61\u001b[0m \u001b[39m If paragraphs are below \"min_partition\" or above \"max_partition\" boundaries,\u001b[39;00m\n\u001b[1;32m 62\u001b[0m \u001b[39m they are combined or split.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 91\u001b[0m \u001b[39m The day of the last modification\u001b[39;00m\n\u001b[1;32m 92\u001b[0m \u001b[39m \"\"\"\u001b[39;00m\n\u001b[0;32m---> 93\u001b[0m \u001b[39mreturn\u001b[39;00m _partition_text(\n\u001b[1;32m 94\u001b[0m filename\u001b[39m=\u001b[39;49mfilename,\n\u001b[1;32m 95\u001b[0m file\u001b[39m=\u001b[39;49mfile,\n\u001b[1;32m 96\u001b[0m text\u001b[39m=\u001b[39;49mtext,\n\u001b[1;32m 97\u001b[0m encoding\u001b[39m=\u001b[39;49mencoding,\n\u001b[1;32m 98\u001b[0m paragraph_grouper\u001b[39m=\u001b[39;49mparagraph_grouper,\n\u001b[1;32m 99\u001b[0m metadata_filename\u001b[39m=\u001b[39;49mmetadata_filename,\n\u001b[1;32m 100\u001b[0m include_metadata\u001b[39m=\u001b[39;49minclude_metadata,\n\u001b[1;32m 101\u001b[0m languages\u001b[39m=\u001b[39;49mlanguages,\n\u001b[1;32m 102\u001b[0m max_partition\u001b[39m=\u001b[39;49mmax_partition,\n\u001b[1;32m 103\u001b[0m min_partition\u001b[39m=\u001b[39;49mmin_partition,\n\u001b[1;32m 104\u001b[0m metadata_last_modified\u001b[39m=\u001b[39;49mmetadata_last_modified,\n\u001b[1;32m 105\u001b[0m chunking_strategy\u001b[39m=\u001b[39;49mchunking_strategy,\n\u001b[1;32m 106\u001b[0m detect_language_per_element\u001b[39m=\u001b[39;49mdetect_language_per_element,\n\u001b[1;32m 107\u001b[0m detection_origin\u001b[39m=\u001b[39;49mdetection_origin,\n\u001b[1;32m 108\u001b[0m \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs,\n\u001b[1;32m 109\u001b[0m )\n", |
|
|
766 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/documents/elements.py:526\u001b[0m, in \u001b[0;36mprocess_metadata.<locals>.decorator.<locals>.wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 524\u001b[0m \u001b[39m@functools\u001b[39m\u001b[39m.\u001b[39mwraps(func)\n\u001b[1;32m 525\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mwrapper\u001b[39m(\u001b[39m*\u001b[39margs: _P\u001b[39m.\u001b[39margs, \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs: _P\u001b[39m.\u001b[39mkwargs) \u001b[39m-\u001b[39m\u001b[39m>\u001b[39m List[Element]:\n\u001b[0;32m--> 526\u001b[0m elements \u001b[39m=\u001b[39m func(\u001b[39m*\u001b[39;49margs, \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs)\n\u001b[1;32m 527\u001b[0m sig \u001b[39m=\u001b[39m inspect\u001b[39m.\u001b[39msignature(func)\n\u001b[1;32m 528\u001b[0m params: Dict[\u001b[39mstr\u001b[39m, Any] \u001b[39m=\u001b[39m \u001b[39mdict\u001b[39m(\u001b[39m*\u001b[39m\u001b[39m*\u001b[39m\u001b[39mdict\u001b[39m(\u001b[39mzip\u001b[39m(sig\u001b[39m.\u001b[39mparameters, args)), \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs)\n", |
|
|
767 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/file_utils/filetype.py:619\u001b[0m, in \u001b[0;36madd_filetype.<locals>.decorator.<locals>.wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 617\u001b[0m \u001b[39m@functools\u001b[39m\u001b[39m.\u001b[39mwraps(func)\n\u001b[1;32m 618\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mwrapper\u001b[39m(\u001b[39m*\u001b[39margs: _P\u001b[39m.\u001b[39margs, \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs: _P\u001b[39m.\u001b[39mkwargs) \u001b[39m-\u001b[39m\u001b[39m>\u001b[39m List[Element]:\n\u001b[0;32m--> 619\u001b[0m elements \u001b[39m=\u001b[39m func(\u001b[39m*\u001b[39;49margs, \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs)\n\u001b[1;32m 620\u001b[0m sig \u001b[39m=\u001b[39m inspect\u001b[39m.\u001b[39msignature(func)\n\u001b[1;32m 621\u001b[0m params: Dict[\u001b[39mstr\u001b[39m, Any] \u001b[39m=\u001b[39m \u001b[39mdict\u001b[39m(\u001b[39m*\u001b[39m\u001b[39m*\u001b[39m\u001b[39mdict\u001b[39m(\u001b[39mzip\u001b[39m(sig\u001b[39m.\u001b[39mparameters, args)), \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs)\n", |
|
|
768 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/file_utils/filetype.py:597\u001b[0m, in \u001b[0;36madd_metadata.<locals>.wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 593\u001b[0m \u001b[39mfor\u001b[39;00m element \u001b[39min\u001b[39;00m elements:\n\u001b[1;32m 594\u001b[0m \u001b[39m# NOTE(robinson) - Attached files have already run through this logic\u001b[39;00m\n\u001b[1;32m 595\u001b[0m \u001b[39m# in their own partitioning function\u001b[39;00m\n\u001b[1;32m 596\u001b[0m \u001b[39mif\u001b[39;00m element\u001b[39m.\u001b[39mmetadata\u001b[39m.\u001b[39mattached_to_filename \u001b[39mis\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n\u001b[0;32m--> 597\u001b[0m _add_element_metadata(\n\u001b[1;32m 598\u001b[0m element,\n\u001b[1;32m 599\u001b[0m \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mmetadata_kwargs, \u001b[39m# type: ignore\u001b[39;49;00m\n\u001b[1;32m 600\u001b[0m )\n\u001b[1;32m 602\u001b[0m \u001b[39mreturn\u001b[39;00m elements\n\u001b[1;32m 603\u001b[0m \u001b[39melse\u001b[39;00m:\n", |
|
|
769 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/partition/common.py:339\u001b[0m, in \u001b[0;36m_add_element_metadata\u001b[0;34m(element, filename, filetype, page_number, url, text_as_html, coordinates, coordinate_system, section, image_path, detection_origin, languages, **kwargs)\u001b[0m\n\u001b[1;32m 321\u001b[0m depth \u001b[39m=\u001b[39m element\u001b[39m.\u001b[39mmetadata\u001b[39m.\u001b[39mcategory_depth \u001b[39mif\u001b[39;00m element\u001b[39m.\u001b[39mmetadata\u001b[39m.\u001b[39mcategory_depth \u001b[39melse\u001b[39;00m \u001b[39mNone\u001b[39;00m\n\u001b[1;32m 323\u001b[0m metadata \u001b[39m=\u001b[39m ElementMetadata(\n\u001b[1;32m 324\u001b[0m coordinates\u001b[39m=\u001b[39mcoordinates_metadata,\n\u001b[1;32m 325\u001b[0m filename\u001b[39m=\u001b[39mfilename,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 337\u001b[0m languages\u001b[39m=\u001b[39mlanguages,\n\u001b[1;32m 338\u001b[0m )\n\u001b[0;32m--> 339\u001b[0m element\u001b[39m.\u001b[39;49mmetadata\u001b[39m.\u001b[39;49mupdate(metadata)\n\u001b[1;32m 340\u001b[0m \u001b[39mif\u001b[39;00m detection_origin \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n\u001b[1;32m 341\u001b[0m element\u001b[39m.\u001b[39mmetadata\u001b[39m.\u001b[39mdetection_origin \u001b[39m=\u001b[39m detection_origin\n", |
|
|
770 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/documents/elements.py:409\u001b[0m, in \u001b[0;36mElementMetadata.update\u001b[0;34m(self, other)\u001b[0m\n\u001b[1;32m 406\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39misinstance\u001b[39m(other, ElementMetadata): \u001b[39m# pyright: ignore[reportUnnecessaryIsInstance]\u001b[39;00m\n\u001b[1;32m 407\u001b[0m \u001b[39mraise\u001b[39;00m \u001b[39mValueError\u001b[39;00m(\u001b[39m\"\u001b[39m\u001b[39margument to \u001b[39m\u001b[39m'\u001b[39m\u001b[39m.update()\u001b[39m\u001b[39m'\u001b[39m\u001b[39m must be an instance of \u001b[39m\u001b[39m'\u001b[39m\u001b[39mElementMetadata\u001b[39m\u001b[39m'\u001b[39m\u001b[39m\"\u001b[39m)\n\u001b[0;32m--> 409\u001b[0m \u001b[39mfor\u001b[39;00m field_name, field_value \u001b[39min\u001b[39;00m other\u001b[39m.\u001b[39;49mfields\u001b[39m.\u001b[39mitems():\n\u001b[1;32m 410\u001b[0m \u001b[39msetattr\u001b[39m(\u001b[39mself\u001b[39m, field_name, field_value)\n", |
|
|
771 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/documents/elements.py:341\u001b[0m, in \u001b[0;36mElementMetadata.fields\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 333\u001b[0m \u001b[39m@property\u001b[39m\n\u001b[1;32m 334\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mfields\u001b[39m(\u001b[39mself\u001b[39m) \u001b[39m-\u001b[39m\u001b[39m>\u001b[39m MappingProxyType[\u001b[39mstr\u001b[39m, Any]:\n\u001b[1;32m 335\u001b[0m \u001b[39m \u001b[39m\u001b[39m\"\"\"Populated metadata fields in this object as a read-only dict.\u001b[39;00m\n\u001b[1;32m 336\u001b[0m \n\u001b[1;32m 337\u001b[0m \u001b[39m Basically `self.__dict__` but it needs a little filtering to remove entries like\u001b[39;00m\n\u001b[1;32m 338\u001b[0m \u001b[39m \"_known_field_names\". Note this is a *snapshot* and will not reflect later changes.\u001b[39;00m\n\u001b[1;32m 339\u001b[0m \u001b[39m \"\"\"\u001b[39;00m\n\u001b[1;32m 340\u001b[0m \u001b[39mreturn\u001b[39;00m MappingProxyType(\n\u001b[0;32m--> 341\u001b[0m {\n\u001b[1;32m 342\u001b[0m field_name: field_value\n\u001b[1;32m 343\u001b[0m \u001b[39mfor\u001b[39;49;00m field_name, field_value \u001b[39min\u001b[39;49;00m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m\u001b[39m__dict__\u001b[39;49m\u001b[39m.\u001b[39;49mitems()\n\u001b[1;32m 344\u001b[0m \u001b[39mif\u001b[39;49;00m \u001b[39mnot\u001b[39;49;00m field_name\u001b[39m.\u001b[39;49mstartswith(\u001b[39m\"\u001b[39;49m\u001b[39m_\u001b[39;49m\u001b[39m\"\u001b[39;49m) \u001b[39mand\u001b[39;49;00m field_name \u001b[39mnot\u001b[39;49;00m \u001b[39min\u001b[39;49;00m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mDEBUG_FIELD_NAMES\n\u001b[1;32m 345\u001b[0m }\n\u001b[1;32m 346\u001b[0m )\n", |
|
|
772 |
"File \u001b[0;32m~/miniconda3/lib/python3.11/site-packages/unstructured/documents/elements.py:341\u001b[0m, in \u001b[0;36m<dictcomp>\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 333\u001b[0m \u001b[39m@property\u001b[39m\n\u001b[1;32m 334\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mfields\u001b[39m(\u001b[39mself\u001b[39m) \u001b[39m-\u001b[39m\u001b[39m>\u001b[39m MappingProxyType[\u001b[39mstr\u001b[39m, Any]:\n\u001b[1;32m 335\u001b[0m \u001b[39m \u001b[39m\u001b[39m\"\"\"Populated metadata fields in this object as a read-only dict.\u001b[39;00m\n\u001b[1;32m 336\u001b[0m \n\u001b[1;32m 337\u001b[0m \u001b[39m Basically `self.__dict__` but it needs a little filtering to remove entries like\u001b[39;00m\n\u001b[1;32m 338\u001b[0m \u001b[39m \"_known_field_names\". Note this is a *snapshot* and will not reflect later changes.\u001b[39;00m\n\u001b[1;32m 339\u001b[0m \u001b[39m \"\"\"\u001b[39;00m\n\u001b[1;32m 340\u001b[0m \u001b[39mreturn\u001b[39;00m MappingProxyType(\n\u001b[0;32m--> 341\u001b[0m {\n\u001b[1;32m 342\u001b[0m field_name: field_value\n\u001b[1;32m 343\u001b[0m \u001b[39mfor\u001b[39;00m field_name, field_value \u001b[39min\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m\u001b[39m__dict__\u001b[39m\u001b[39m.\u001b[39mitems()\n\u001b[1;32m 344\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mnot\u001b[39;00m field_name\u001b[39m.\u001b[39mstartswith(\u001b[39m\"\u001b[39m\u001b[39m_\u001b[39m\u001b[39m\"\u001b[39m) \u001b[39mand\u001b[39;00m field_name \u001b[39mnot\u001b[39;00m \u001b[39min\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mDEBUG_FIELD_NAMES\n\u001b[1;32m 345\u001b[0m }\n\u001b[1;32m 346\u001b[0m )\n", |
|
|
773 |
"\u001b[0;31mKeyboardInterrupt\u001b[0m: " |
|
|
774 |
] |
|
|
775 |
} |
|
|
776 |
], |
|
|
777 |
"source": [ |
|
|
778 |
"import requests\n", |
|
|
779 |
"from langchain_community.document_loaders import DirectoryLoader\n", |
|
|
780 |
"\n", |
|
|
781 |
"loader = DirectoryLoader('/mnt/cbib/EOSC4Cancer/synthetic_data/', glob=\"**/*.txt\")\n", |
|
|
782 |
"documents = loader.load()" |
|
|
783 |
] |
|
|
784 |
}, |
|
|
785 |
{ |
|
|
786 |
"cell_type": "code", |
|
|
787 |
"execution_count": null, |
|
|
788 |
"metadata": {}, |
|
|
789 |
"outputs": [], |
|
|
790 |
"source": [ |
|
|
791 |
"documents[0]" |
|
|
792 |
] |
|
|
793 |
}, |
|
|
794 |
{ |
|
|
795 |
"cell_type": "code", |
|
|
796 |
"execution_count": 5, |
|
|
797 |
"metadata": {}, |
|
|
798 |
"outputs": [ |
|
|
799 |
{ |
|
|
800 |
"name": "stderr", |
|
|
801 |
"output_type": "stream", |
|
|
802 |
"text": [ |
|
|
803 |
"Created a chunk of size 1005, which is longer than the specified 1000\n", |
|
|
804 |
"Created a chunk of size 1074, which is longer than the specified 1000\n", |
|
|
805 |
"Created a chunk of size 1268, which is longer than the specified 1000\n", |
|
|
806 |
"Created a chunk of size 1480, which is longer than the specified 1000\n", |
|
|
807 |
"Created a chunk of size 1473, which is longer than the specified 1000\n", |
|
|
808 |
"Created a chunk of size 1195, which is longer than the specified 1000\n", |
|
|
809 |
"Created a chunk of size 1476, which is longer than the specified 1000\n", |
|
|
810 |
"Created a chunk of size 1435, which is longer than the specified 1000\n", |
|
|
811 |
"Created a chunk of size 1260, which is longer than the specified 1000\n", |
|
|
812 |
"Created a chunk of size 1043, which is longer than the specified 1000\n", |
|
|
813 |
"Created a chunk of size 1356, which is longer than the specified 1000\n", |
|
|
814 |
"Created a chunk of size 1030, which is longer than the specified 1000\n", |
|
|
815 |
"Created a chunk of size 1084, which is longer than the specified 1000\n", |
|
|
816 |
"Created a chunk of size 1082, which is longer than the specified 1000\n", |
|
|
817 |
"Created a chunk of size 1005, which is longer than the specified 1000\n", |
|
|
818 |
"Created a chunk of size 1007, which is longer than the specified 1000\n", |
|
|
819 |
"Created a chunk of size 1294, which is longer than the specified 1000\n", |
|
|
820 |
"Created a chunk of size 1046, which is longer than the specified 1000\n", |
|
|
821 |
"Created a chunk of size 1261, which is longer than the specified 1000\n", |
|
|
822 |
"Created a chunk of size 1471, which is longer than the specified 1000\n", |
|
|
823 |
"Created a chunk of size 1127, which is longer than the specified 1000\n", |
|
|
824 |
"Created a chunk of size 1482, which is longer than the specified 1000\n", |
|
|
825 |
"Created a chunk of size 1447, which is longer than the specified 1000\n", |
|
|
826 |
"Created a chunk of size 1049, which is longer than the specified 1000\n", |
|
|
827 |
"Created a chunk of size 1070, which is longer than the specified 1000\n", |
|
|
828 |
"Created a chunk of size 1175, which is longer than the specified 1000\n", |
|
|
829 |
"Created a chunk of size 1492, which is longer than the specified 1000\n", |
|
|
830 |
"Created a chunk of size 1497, which is longer than the specified 1000\n", |
|
|
831 |
"Created a chunk of size 1439, which is longer than the specified 1000\n", |
|
|
832 |
"Created a chunk of size 1470, which is longer than the specified 1000\n", |
|
|
833 |
"Created a chunk of size 1096, which is longer than the specified 1000\n", |
|
|
834 |
"Created a chunk of size 1227, which is longer than the specified 1000\n", |
|
|
835 |
"Created a chunk of size 1001, which is longer than the specified 1000\n", |
|
|
836 |
"Created a chunk of size 1496, which is longer than the specified 1000\n", |
|
|
837 |
"Created a chunk of size 1375, which is longer than the specified 1000\n", |
|
|
838 |
"Created a chunk of size 1454, which is longer than the specified 1000\n", |
|
|
839 |
"Created a chunk of size 1481, which is longer than the specified 1000\n", |
|
|
840 |
"Created a chunk of size 1193, which is longer than the specified 1000\n", |
|
|
841 |
"Created a chunk of size 1319, which is longer than the specified 1000\n", |
|
|
842 |
"Created a chunk of size 1442, which is longer than the specified 1000\n", |
|
|
843 |
"Created a chunk of size 1485, which is longer than the specified 1000\n", |
|
|
844 |
"Created a chunk of size 1433, which is longer than the specified 1000\n", |
|
|
845 |
"Created a chunk of size 1084, which is longer than the specified 1000\n", |
|
|
846 |
"Created a chunk of size 1365, which is longer than the specified 1000\n", |
|
|
847 |
"Created a chunk of size 1253, which is longer than the specified 1000\n", |
|
|
848 |
"Created a chunk of size 1339, which is longer than the specified 1000\n", |
|
|
849 |
"Created a chunk of size 1313, which is longer than the specified 1000\n", |
|
|
850 |
"Created a chunk of size 1490, which is longer than the specified 1000\n", |
|
|
851 |
"Created a chunk of size 1228, which is longer than the specified 1000\n", |
|
|
852 |
"Created a chunk of size 1080, which is longer than the specified 1000\n", |
|
|
853 |
"Created a chunk of size 1141, which is longer than the specified 1000\n", |
|
|
854 |
"Created a chunk of size 1486, which is longer than the specified 1000\n", |
|
|
855 |
"Created a chunk of size 1141, which is longer than the specified 1000\n", |
|
|
856 |
"Created a chunk of size 1153, which is longer than the specified 1000\n", |
|
|
857 |
"Created a chunk of size 1393, which is longer than the specified 1000\n", |
|
|
858 |
"Created a chunk of size 1361, which is longer than the specified 1000\n", |
|
|
859 |
"Created a chunk of size 1479, which is longer than the specified 1000\n", |
|
|
860 |
"Created a chunk of size 1186, which is longer than the specified 1000\n", |
|
|
861 |
"Created a chunk of size 1471, which is longer than the specified 1000\n", |
|
|
862 |
"Created a chunk of size 1361, which is longer than the specified 1000\n", |
|
|
863 |
"Created a chunk of size 1442, which is longer than the specified 1000\n", |
|
|
864 |
"Created a chunk of size 1483, which is longer than the specified 1000\n", |
|
|
865 |
"Created a chunk of size 1348, which is longer than the specified 1000\n", |
|
|
866 |
"Created a chunk of size 1072, which is longer than the specified 1000\n", |
|
|
867 |
"Created a chunk of size 1107, which is longer than the specified 1000\n", |
|
|
868 |
"Created a chunk of size 1341, which is longer than the specified 1000\n", |
|
|
869 |
"Created a chunk of size 1472, which is longer than the specified 1000\n", |
|
|
870 |
"Created a chunk of size 1136, which is longer than the specified 1000\n", |
|
|
871 |
"Created a chunk of size 1386, which is longer than the specified 1000\n", |
|
|
872 |
"Created a chunk of size 1450, which is longer than the specified 1000\n", |
|
|
873 |
"Created a chunk of size 1469, which is longer than the specified 1000\n", |
|
|
874 |
"Created a chunk of size 1462, which is longer than the specified 1000\n", |
|
|
875 |
"Created a chunk of size 1406, which is longer than the specified 1000\n", |
|
|
876 |
"Created a chunk of size 1133, which is longer than the specified 1000\n", |
|
|
877 |
"Created a chunk of size 1240, which is longer than the specified 1000\n", |
|
|
878 |
"Created a chunk of size 1437, which is longer than the specified 1000\n", |
|
|
879 |
"Created a chunk of size 1311, which is longer than the specified 1000\n", |
|
|
880 |
"Created a chunk of size 1394, which is longer than the specified 1000\n", |
|
|
881 |
"Created a chunk of size 1082, which is longer than the specified 1000\n", |
|
|
882 |
"Created a chunk of size 1319, which is longer than the specified 1000\n", |
|
|
883 |
"Created a chunk of size 1045, which is longer than the specified 1000\n", |
|
|
884 |
"Created a chunk of size 1471, which is longer than the specified 1000\n", |
|
|
885 |
"Created a chunk of size 1001, which is longer than the specified 1000\n", |
|
|
886 |
"Created a chunk of size 1207, which is longer than the specified 1000\n", |
|
|
887 |
"Created a chunk of size 1500, which is longer than the specified 1000\n", |
|
|
888 |
"Created a chunk of size 1489, which is longer than the specified 1000\n", |
|
|
889 |
"Created a chunk of size 1495, which is longer than the specified 1000\n", |
|
|
890 |
"Created a chunk of size 1179, which is longer than the specified 1000\n", |
|
|
891 |
"Created a chunk of size 1312, which is longer than the specified 1000\n", |
|
|
892 |
"Created a chunk of size 1485, which is longer than the specified 1000\n", |
|
|
893 |
"Created a chunk of size 1309, which is longer than the specified 1000\n", |
|
|
894 |
"Created a chunk of size 1439, which is longer than the specified 1000\n", |
|
|
895 |
"Created a chunk of size 1095, which is longer than the specified 1000\n", |
|
|
896 |
"Created a chunk of size 1325, which is longer than the specified 1000\n", |
|
|
897 |
"Created a chunk of size 1196, which is longer than the specified 1000\n", |
|
|
898 |
"Created a chunk of size 1254, which is longer than the specified 1000\n", |
|
|
899 |
"Created a chunk of size 1478, which is longer than the specified 1000\n", |
|
|
900 |
"Created a chunk of size 1475, which is longer than the specified 1000\n", |
|
|
901 |
"Created a chunk of size 1477, which is longer than the specified 1000\n", |
|
|
902 |
"Created a chunk of size 1343, which is longer than the specified 1000\n", |
|
|
903 |
"Created a chunk of size 1381, which is longer than the specified 1000\n", |
|
|
904 |
"Created a chunk of size 1253, which is longer than the specified 1000\n", |
|
|
905 |
"Created a chunk of size 1317, which is longer than the specified 1000\n", |
|
|
906 |
"Created a chunk of size 1313, which is longer than the specified 1000\n", |
|
|
907 |
"Created a chunk of size 1295, which is longer than the specified 1000\n", |
|
|
908 |
"Created a chunk of size 1449, which is longer than the specified 1000\n", |
|
|
909 |
"Created a chunk of size 1178, which is longer than the specified 1000\n", |
|
|
910 |
"Created a chunk of size 1423, which is longer than the specified 1000\n", |
|
|
911 |
"Created a chunk of size 1094, which is longer than the specified 1000\n", |
|
|
912 |
"Created a chunk of size 1481, which is longer than the specified 1000\n", |
|
|
913 |
"Created a chunk of size 1052, which is longer than the specified 1000\n", |
|
|
914 |
"Created a chunk of size 1317, which is longer than the specified 1000\n", |
|
|
915 |
"Created a chunk of size 1080, which is longer than the specified 1000\n", |
|
|
916 |
"Created a chunk of size 1001, which is longer than the specified 1000\n", |
|
|
917 |
"Created a chunk of size 1339, which is longer than the specified 1000\n", |
|
|
918 |
"Created a chunk of size 1327, which is longer than the specified 1000\n", |
|
|
919 |
"Created a chunk of size 1155, which is longer than the specified 1000\n", |
|
|
920 |
"Created a chunk of size 1202, which is longer than the specified 1000\n", |
|
|
921 |
"Created a chunk of size 1054, which is longer than the specified 1000\n", |
|
|
922 |
"Created a chunk of size 1460, which is longer than the specified 1000\n", |
|
|
923 |
"Created a chunk of size 1282, which is longer than the specified 1000\n", |
|
|
924 |
"Created a chunk of size 1301, which is longer than the specified 1000\n", |
|
|
925 |
"Created a chunk of size 1125, which is longer than the specified 1000\n", |
|
|
926 |
"Created a chunk of size 1159, which is longer than the specified 1000\n", |
|
|
927 |
"Created a chunk of size 1157, which is longer than the specified 1000\n", |
|
|
928 |
"Created a chunk of size 1426, which is longer than the specified 1000\n", |
|
|
929 |
"Created a chunk of size 1107, which is longer than the specified 1000\n", |
|
|
930 |
"Created a chunk of size 1205, which is longer than the specified 1000\n", |
|
|
931 |
"Created a chunk of size 1442, which is longer than the specified 1000\n", |
|
|
932 |
"Created a chunk of size 1494, which is longer than the specified 1000\n", |
|
|
933 |
"Created a chunk of size 1022, which is longer than the specified 1000\n", |
|
|
934 |
"Created a chunk of size 1293, which is longer than the specified 1000\n", |
|
|
935 |
"Created a chunk of size 1270, which is longer than the specified 1000\n", |
|
|
936 |
"Created a chunk of size 1257, which is longer than the specified 1000\n", |
|
|
937 |
"Created a chunk of size 1403, which is longer than the specified 1000\n", |
|
|
938 |
"Created a chunk of size 1155, which is longer than the specified 1000\n", |
|
|
939 |
"Created a chunk of size 1416, which is longer than the specified 1000\n", |
|
|
940 |
"Created a chunk of size 1434, which is longer than the specified 1000\n", |
|
|
941 |
"Created a chunk of size 1492, which is longer than the specified 1000\n", |
|
|
942 |
"Created a chunk of size 1013, which is longer than the specified 1000\n", |
|
|
943 |
"Created a chunk of size 1425, which is longer than the specified 1000\n", |
|
|
944 |
"Created a chunk of size 1487, which is longer than the specified 1000\n", |
|
|
945 |
"Created a chunk of size 1494, which is longer than the specified 1000\n", |
|
|
946 |
"Created a chunk of size 1399, which is longer than the specified 1000\n", |
|
|
947 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
948 |
"Created a chunk of size 1188, which is longer than the specified 1000\n", |
|
|
949 |
"Created a chunk of size 1148, which is longer than the specified 1000\n", |
|
|
950 |
"Created a chunk of size 1009, which is longer than the specified 1000\n", |
|
|
951 |
"Created a chunk of size 1270, which is longer than the specified 1000\n", |
|
|
952 |
"Created a chunk of size 1491, which is longer than the specified 1000\n", |
|
|
953 |
"Created a chunk of size 1452, which is longer than the specified 1000\n", |
|
|
954 |
"Created a chunk of size 1492, which is longer than the specified 1000\n", |
|
|
955 |
"Created a chunk of size 1322, which is longer than the specified 1000\n", |
|
|
956 |
"Created a chunk of size 1442, which is longer than the specified 1000\n", |
|
|
957 |
"Created a chunk of size 1481, which is longer than the specified 1000\n", |
|
|
958 |
"Created a chunk of size 1476, which is longer than the specified 1000\n", |
|
|
959 |
"Created a chunk of size 1475, which is longer than the specified 1000\n", |
|
|
960 |
"Created a chunk of size 1462, which is longer than the specified 1000\n", |
|
|
961 |
"Created a chunk of size 1485, which is longer than the specified 1000\n", |
|
|
962 |
"Created a chunk of size 1031, which is longer than the specified 1000\n", |
|
|
963 |
"Created a chunk of size 1083, which is longer than the specified 1000\n", |
|
|
964 |
"Created a chunk of size 1037, which is longer than the specified 1000\n", |
|
|
965 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
966 |
"Created a chunk of size 1423, which is longer than the specified 1000\n", |
|
|
967 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
968 |
"Created a chunk of size 1059, which is longer than the specified 1000\n", |
|
|
969 |
"Created a chunk of size 1012, which is longer than the specified 1000\n", |
|
|
970 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
971 |
"Created a chunk of size 1351, which is longer than the specified 1000\n", |
|
|
972 |
"Created a chunk of size 1491, which is longer than the specified 1000\n", |
|
|
973 |
"Created a chunk of size 1107, which is longer than the specified 1000\n", |
|
|
974 |
"Created a chunk of size 1239, which is longer than the specified 1000\n", |
|
|
975 |
"Created a chunk of size 1086, which is longer than the specified 1000\n", |
|
|
976 |
"Created a chunk of size 1085, which is longer than the specified 1000\n", |
|
|
977 |
"Created a chunk of size 1128, which is longer than the specified 1000\n", |
|
|
978 |
"Created a chunk of size 1408, which is longer than the specified 1000\n", |
|
|
979 |
"Created a chunk of size 1481, which is longer than the specified 1000\n", |
|
|
980 |
"Created a chunk of size 1013, which is longer than the specified 1000\n", |
|
|
981 |
"Created a chunk of size 1006, which is longer than the specified 1000\n", |
|
|
982 |
"Created a chunk of size 1458, which is longer than the specified 1000\n", |
|
|
983 |
"Created a chunk of size 1457, which is longer than the specified 1000\n", |
|
|
984 |
"Created a chunk of size 1269, which is longer than the specified 1000\n", |
|
|
985 |
"Created a chunk of size 1477, which is longer than the specified 1000\n", |
|
|
986 |
"Created a chunk of size 1479, which is longer than the specified 1000\n", |
|
|
987 |
"Created a chunk of size 1289, which is longer than the specified 1000\n", |
|
|
988 |
"Created a chunk of size 1410, which is longer than the specified 1000\n", |
|
|
989 |
"Created a chunk of size 1414, which is longer than the specified 1000\n", |
|
|
990 |
"Created a chunk of size 1488, which is longer than the specified 1000\n", |
|
|
991 |
"Created a chunk of size 1474, which is longer than the specified 1000\n", |
|
|
992 |
"Created a chunk of size 1028, which is longer than the specified 1000\n", |
|
|
993 |
"Created a chunk of size 1046, which is longer than the specified 1000\n", |
|
|
994 |
"Created a chunk of size 1378, which is longer than the specified 1000\n", |
|
|
995 |
"Created a chunk of size 1067, which is longer than the specified 1000\n", |
|
|
996 |
"Created a chunk of size 1021, which is longer than the specified 1000\n", |
|
|
997 |
"Created a chunk of size 1462, which is longer than the specified 1000\n", |
|
|
998 |
"Created a chunk of size 1139, which is longer than the specified 1000\n", |
|
|
999 |
"Created a chunk of size 1496, which is longer than the specified 1000\n", |
|
|
1000 |
"Created a chunk of size 1466, which is longer than the specified 1000\n", |
|
|
1001 |
"Created a chunk of size 1202, which is longer than the specified 1000\n", |
|
|
1002 |
"Created a chunk of size 1273, which is longer than the specified 1000\n", |
|
|
1003 |
"Created a chunk of size 1408, which is longer than the specified 1000\n", |
|
|
1004 |
"Created a chunk of size 1447, which is longer than the specified 1000\n", |
|
|
1005 |
"Created a chunk of size 1140, which is longer than the specified 1000\n", |
|
|
1006 |
"Created a chunk of size 1372, which is longer than the specified 1000\n", |
|
|
1007 |
"Created a chunk of size 1181, which is longer than the specified 1000\n", |
|
|
1008 |
"Created a chunk of size 1051, which is longer than the specified 1000\n", |
|
|
1009 |
"Created a chunk of size 1414, which is longer than the specified 1000\n", |
|
|
1010 |
"Created a chunk of size 1449, which is longer than the specified 1000\n", |
|
|
1011 |
"Created a chunk of size 1172, which is longer than the specified 1000\n", |
|
|
1012 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
1013 |
"Created a chunk of size 1350, which is longer than the specified 1000\n", |
|
|
1014 |
"Created a chunk of size 1488, which is longer than the specified 1000\n", |
|
|
1015 |
"Created a chunk of size 1063, which is longer than the specified 1000\n", |
|
|
1016 |
"Created a chunk of size 1052, which is longer than the specified 1000\n", |
|
|
1017 |
"Created a chunk of size 1489, which is longer than the specified 1000\n", |
|
|
1018 |
"Created a chunk of size 1102, which is longer than the specified 1000\n", |
|
|
1019 |
"Created a chunk of size 1310, which is longer than the specified 1000\n", |
|
|
1020 |
"Created a chunk of size 1320, which is longer than the specified 1000\n", |
|
|
1021 |
"Created a chunk of size 1431, which is longer than the specified 1000\n", |
|
|
1022 |
"Created a chunk of size 1467, which is longer than the specified 1000\n", |
|
|
1023 |
"Created a chunk of size 1229, which is longer than the specified 1000\n", |
|
|
1024 |
"Created a chunk of size 1482, which is longer than the specified 1000\n", |
|
|
1025 |
"Created a chunk of size 1480, which is longer than the specified 1000\n", |
|
|
1026 |
"Created a chunk of size 1058, which is longer than the specified 1000\n", |
|
|
1027 |
"Created a chunk of size 1354, which is longer than the specified 1000\n", |
|
|
1028 |
"Created a chunk of size 1161, which is longer than the specified 1000\n", |
|
|
1029 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1030 |
"Created a chunk of size 1272, which is longer than the specified 1000\n", |
|
|
1031 |
"Created a chunk of size 1153, which is longer than the specified 1000\n", |
|
|
1032 |
"Created a chunk of size 1476, which is longer than the specified 1000\n", |
|
|
1033 |
"Created a chunk of size 1114, which is longer than the specified 1000\n", |
|
|
1034 |
"Created a chunk of size 1330, which is longer than the specified 1000\n", |
|
|
1035 |
"Created a chunk of size 1076, which is longer than the specified 1000\n", |
|
|
1036 |
"Created a chunk of size 1487, which is longer than the specified 1000\n", |
|
|
1037 |
"Created a chunk of size 1234, which is longer than the specified 1000\n", |
|
|
1038 |
"Created a chunk of size 1488, which is longer than the specified 1000\n", |
|
|
1039 |
"Created a chunk of size 1042, which is longer than the specified 1000\n", |
|
|
1040 |
"Created a chunk of size 1247, which is longer than the specified 1000\n", |
|
|
1041 |
"Created a chunk of size 1210, which is longer than the specified 1000\n", |
|
|
1042 |
"Created a chunk of size 1468, which is longer than the specified 1000\n", |
|
|
1043 |
"Created a chunk of size 1242, which is longer than the specified 1000\n", |
|
|
1044 |
"Created a chunk of size 1465, which is longer than the specified 1000\n", |
|
|
1045 |
"Created a chunk of size 1381, which is longer than the specified 1000\n", |
|
|
1046 |
"Created a chunk of size 1323, which is longer than the specified 1000\n", |
|
|
1047 |
"Created a chunk of size 1465, which is longer than the specified 1000\n", |
|
|
1048 |
"Created a chunk of size 1132, which is longer than the specified 1000\n", |
|
|
1049 |
"Created a chunk of size 1425, which is longer than the specified 1000\n", |
|
|
1050 |
"Created a chunk of size 1429, which is longer than the specified 1000\n", |
|
|
1051 |
"Created a chunk of size 1465, which is longer than the specified 1000\n", |
|
|
1052 |
"Created a chunk of size 1106, which is longer than the specified 1000\n", |
|
|
1053 |
"Created a chunk of size 1316, which is longer than the specified 1000\n", |
|
|
1054 |
"Created a chunk of size 1025, which is longer than the specified 1000\n", |
|
|
1055 |
"Created a chunk of size 1150, which is longer than the specified 1000\n", |
|
|
1056 |
"Created a chunk of size 1486, which is longer than the specified 1000\n", |
|
|
1057 |
"Created a chunk of size 1045, which is longer than the specified 1000\n", |
|
|
1058 |
"Created a chunk of size 1011, which is longer than the specified 1000\n", |
|
|
1059 |
"Created a chunk of size 1090, which is longer than the specified 1000\n", |
|
|
1060 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1061 |
"Created a chunk of size 1045, which is longer than the specified 1000\n", |
|
|
1062 |
"Created a chunk of size 1127, which is longer than the specified 1000\n", |
|
|
1063 |
"Created a chunk of size 1337, which is longer than the specified 1000\n", |
|
|
1064 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1065 |
"Created a chunk of size 1182, which is longer than the specified 1000\n", |
|
|
1066 |
"Created a chunk of size 1001, which is longer than the specified 1000\n", |
|
|
1067 |
"Created a chunk of size 1094, which is longer than the specified 1000\n", |
|
|
1068 |
"Created a chunk of size 1455, which is longer than the specified 1000\n", |
|
|
1069 |
"Created a chunk of size 1108, which is longer than the specified 1000\n", |
|
|
1070 |
"Created a chunk of size 1066, which is longer than the specified 1000\n", |
|
|
1071 |
"Created a chunk of size 1226, which is longer than the specified 1000\n", |
|
|
1072 |
"Created a chunk of size 1454, which is longer than the specified 1000\n", |
|
|
1073 |
"Created a chunk of size 1216, which is longer than the specified 1000\n", |
|
|
1074 |
"Created a chunk of size 1430, which is longer than the specified 1000\n", |
|
|
1075 |
"Created a chunk of size 1039, which is longer than the specified 1000\n", |
|
|
1076 |
"Created a chunk of size 1187, which is longer than the specified 1000\n", |
|
|
1077 |
"Created a chunk of size 1484, which is longer than the specified 1000\n", |
|
|
1078 |
"Created a chunk of size 1458, which is longer than the specified 1000\n", |
|
|
1079 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1080 |
"Created a chunk of size 1074, which is longer than the specified 1000\n", |
|
|
1081 |
"Created a chunk of size 1288, which is longer than the specified 1000\n", |
|
|
1082 |
"Created a chunk of size 1494, which is longer than the specified 1000\n", |
|
|
1083 |
"Created a chunk of size 1152, which is longer than the specified 1000\n", |
|
|
1084 |
"Created a chunk of size 1458, which is longer than the specified 1000\n", |
|
|
1085 |
"Created a chunk of size 1138, which is longer than the specified 1000\n", |
|
|
1086 |
"Created a chunk of size 1143, which is longer than the specified 1000\n", |
|
|
1087 |
"Created a chunk of size 1102, which is longer than the specified 1000\n", |
|
|
1088 |
"Created a chunk of size 1159, which is longer than the specified 1000\n", |
|
|
1089 |
"Created a chunk of size 1225, which is longer than the specified 1000\n", |
|
|
1090 |
"Created a chunk of size 1407, which is longer than the specified 1000\n", |
|
|
1091 |
"Created a chunk of size 1040, which is longer than the specified 1000\n", |
|
|
1092 |
"Created a chunk of size 1484, which is longer than the specified 1000\n", |
|
|
1093 |
"Created a chunk of size 1495, which is longer than the specified 1000\n", |
|
|
1094 |
"Created a chunk of size 1447, which is longer than the specified 1000\n", |
|
|
1095 |
"Created a chunk of size 1115, which is longer than the specified 1000\n", |
|
|
1096 |
"Created a chunk of size 1446, which is longer than the specified 1000\n", |
|
|
1097 |
"Created a chunk of size 1209, which is longer than the specified 1000\n", |
|
|
1098 |
"Created a chunk of size 1290, which is longer than the specified 1000\n", |
|
|
1099 |
"Created a chunk of size 1418, which is longer than the specified 1000\n", |
|
|
1100 |
"Created a chunk of size 1099, which is longer than the specified 1000\n", |
|
|
1101 |
"Created a chunk of size 1168, which is longer than the specified 1000\n", |
|
|
1102 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1103 |
"Created a chunk of size 1021, which is longer than the specified 1000\n", |
|
|
1104 |
"Created a chunk of size 1017, which is longer than the specified 1000\n", |
|
|
1105 |
"Created a chunk of size 1242, which is longer than the specified 1000\n", |
|
|
1106 |
"Created a chunk of size 1480, which is longer than the specified 1000\n", |
|
|
1107 |
"Created a chunk of size 1187, which is longer than the specified 1000\n", |
|
|
1108 |
"Created a chunk of size 1402, which is longer than the specified 1000\n", |
|
|
1109 |
"Created a chunk of size 1437, which is longer than the specified 1000\n", |
|
|
1110 |
"Created a chunk of size 1058, which is longer than the specified 1000\n", |
|
|
1111 |
"Created a chunk of size 1418, which is longer than the specified 1000\n", |
|
|
1112 |
"Created a chunk of size 1485, which is longer than the specified 1000\n", |
|
|
1113 |
"Created a chunk of size 1433, which is longer than the specified 1000\n", |
|
|
1114 |
"Created a chunk of size 1091, which is longer than the specified 1000\n", |
|
|
1115 |
"Created a chunk of size 1140, which is longer than the specified 1000\n", |
|
|
1116 |
"Created a chunk of size 1042, which is longer than the specified 1000\n", |
|
|
1117 |
"Created a chunk of size 1091, which is longer than the specified 1000\n", |
|
|
1118 |
"Created a chunk of size 1285, which is longer than the specified 1000\n", |
|
|
1119 |
"Created a chunk of size 1161, which is longer than the specified 1000\n", |
|
|
1120 |
"Created a chunk of size 1023, which is longer than the specified 1000\n", |
|
|
1121 |
"Created a chunk of size 1058, which is longer than the specified 1000\n", |
|
|
1122 |
"Created a chunk of size 1189, which is longer than the specified 1000\n", |
|
|
1123 |
"Created a chunk of size 1202, which is longer than the specified 1000\n", |
|
|
1124 |
"Created a chunk of size 1482, which is longer than the specified 1000\n", |
|
|
1125 |
"Created a chunk of size 1440, which is longer than the specified 1000\n", |
|
|
1126 |
"Created a chunk of size 1172, which is longer than the specified 1000\n", |
|
|
1127 |
"Created a chunk of size 1470, which is longer than the specified 1000\n", |
|
|
1128 |
"Created a chunk of size 1218, which is longer than the specified 1000\n", |
|
|
1129 |
"Created a chunk of size 1479, which is longer than the specified 1000\n", |
|
|
1130 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
1131 |
"Created a chunk of size 1424, which is longer than the specified 1000\n", |
|
|
1132 |
"Created a chunk of size 1403, which is longer than the specified 1000\n", |
|
|
1133 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1134 |
"Created a chunk of size 1197, which is longer than the specified 1000\n", |
|
|
1135 |
"Created a chunk of size 1374, which is longer than the specified 1000\n", |
|
|
1136 |
"Created a chunk of size 1433, which is longer than the specified 1000\n", |
|
|
1137 |
"Created a chunk of size 1473, which is longer than the specified 1000\n", |
|
|
1138 |
"Created a chunk of size 1498, which is longer than the specified 1000\n", |
|
|
1139 |
"Created a chunk of size 1402, which is longer than the specified 1000\n", |
|
|
1140 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1141 |
"Created a chunk of size 1039, which is longer than the specified 1000\n", |
|
|
1142 |
"Created a chunk of size 1039, which is longer than the specified 1000\n", |
|
|
1143 |
"Created a chunk of size 1017, which is longer than the specified 1000\n", |
|
|
1144 |
"Created a chunk of size 1483, which is longer than the specified 1000\n", |
|
|
1145 |
"Created a chunk of size 1195, which is longer than the specified 1000\n", |
|
|
1146 |
"Created a chunk of size 1384, which is longer than the specified 1000\n", |
|
|
1147 |
"Created a chunk of size 1181, which is longer than the specified 1000\n", |
|
|
1148 |
"Created a chunk of size 1196, which is longer than the specified 1000\n", |
|
|
1149 |
"Created a chunk of size 1473, which is longer than the specified 1000\n", |
|
|
1150 |
"Created a chunk of size 1005, which is longer than the specified 1000\n", |
|
|
1151 |
"Created a chunk of size 1191, which is longer than the specified 1000\n", |
|
|
1152 |
"Created a chunk of size 1129, which is longer than the specified 1000\n", |
|
|
1153 |
"Created a chunk of size 1432, which is longer than the specified 1000\n", |
|
|
1154 |
"Created a chunk of size 1491, which is longer than the specified 1000\n", |
|
|
1155 |
"Created a chunk of size 1130, which is longer than the specified 1000\n", |
|
|
1156 |
"Created a chunk of size 1346, which is longer than the specified 1000\n", |
|
|
1157 |
"Created a chunk of size 1497, which is longer than the specified 1000\n", |
|
|
1158 |
"Created a chunk of size 1398, which is longer than the specified 1000\n", |
|
|
1159 |
"Created a chunk of size 1478, which is longer than the specified 1000\n", |
|
|
1160 |
"Created a chunk of size 1075, which is longer than the specified 1000\n", |
|
|
1161 |
"Created a chunk of size 1123, which is longer than the specified 1000\n", |
|
|
1162 |
"Created a chunk of size 1042, which is longer than the specified 1000\n", |
|
|
1163 |
"Created a chunk of size 1041, which is longer than the specified 1000\n", |
|
|
1164 |
"Created a chunk of size 1122, which is longer than the specified 1000\n", |
|
|
1165 |
"Created a chunk of size 1124, which is longer than the specified 1000\n", |
|
|
1166 |
"Created a chunk of size 1001, which is longer than the specified 1000\n", |
|
|
1167 |
"Created a chunk of size 1206, which is longer than the specified 1000\n", |
|
|
1168 |
"Created a chunk of size 1490, which is longer than the specified 1000\n", |
|
|
1169 |
"Created a chunk of size 1353, which is longer than the specified 1000\n", |
|
|
1170 |
"Created a chunk of size 1463, which is longer than the specified 1000\n", |
|
|
1171 |
"Created a chunk of size 1427, which is longer than the specified 1000\n", |
|
|
1172 |
"Created a chunk of size 1486, which is longer than the specified 1000\n", |
|
|
1173 |
"Created a chunk of size 1418, which is longer than the specified 1000\n", |
|
|
1174 |
"Created a chunk of size 1150, which is longer than the specified 1000\n", |
|
|
1175 |
"Created a chunk of size 1363, which is longer than the specified 1000\n", |
|
|
1176 |
"Created a chunk of size 1423, which is longer than the specified 1000\n", |
|
|
1177 |
"Created a chunk of size 1371, which is longer than the specified 1000\n", |
|
|
1178 |
"Created a chunk of size 1417, which is longer than the specified 1000\n", |
|
|
1179 |
"Created a chunk of size 1311, which is longer than the specified 1000\n", |
|
|
1180 |
"Created a chunk of size 1012, which is longer than the specified 1000\n", |
|
|
1181 |
"Created a chunk of size 1470, which is longer than the specified 1000\n", |
|
|
1182 |
"Created a chunk of size 1153, which is longer than the specified 1000\n", |
|
|
1183 |
"Created a chunk of size 1294, which is longer than the specified 1000\n", |
|
|
1184 |
"Created a chunk of size 1422, which is longer than the specified 1000\n", |
|
|
1185 |
"Created a chunk of size 1349, which is longer than the specified 1000\n", |
|
|
1186 |
"Created a chunk of size 1272, which is longer than the specified 1000\n", |
|
|
1187 |
"Created a chunk of size 1472, which is longer than the specified 1000\n", |
|
|
1188 |
"Created a chunk of size 1356, which is longer than the specified 1000\n", |
|
|
1189 |
"Created a chunk of size 1425, which is longer than the specified 1000\n", |
|
|
1190 |
"Created a chunk of size 1330, which is longer than the specified 1000\n", |
|
|
1191 |
"Created a chunk of size 1074, which is longer than the specified 1000\n", |
|
|
1192 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
1193 |
"Created a chunk of size 1014, which is longer than the specified 1000\n", |
|
|
1194 |
"Created a chunk of size 1445, which is longer than the specified 1000\n", |
|
|
1195 |
"Created a chunk of size 1459, which is longer than the specified 1000\n", |
|
|
1196 |
"Created a chunk of size 1190, which is longer than the specified 1000\n", |
|
|
1197 |
"Created a chunk of size 1081, which is longer than the specified 1000\n", |
|
|
1198 |
"Created a chunk of size 1487, which is longer than the specified 1000\n", |
|
|
1199 |
"Created a chunk of size 1427, which is longer than the specified 1000\n", |
|
|
1200 |
"Created a chunk of size 1484, which is longer than the specified 1000\n", |
|
|
1201 |
"Created a chunk of size 1234, which is longer than the specified 1000\n", |
|
|
1202 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
1203 |
"Created a chunk of size 1057, which is longer than the specified 1000\n", |
|
|
1204 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1205 |
"Created a chunk of size 1167, which is longer than the specified 1000\n", |
|
|
1206 |
"Created a chunk of size 1181, which is longer than the specified 1000\n", |
|
|
1207 |
"Created a chunk of size 1246, which is longer than the specified 1000\n", |
|
|
1208 |
"Created a chunk of size 1488, which is longer than the specified 1000\n", |
|
|
1209 |
"Created a chunk of size 1338, which is longer than the specified 1000\n", |
|
|
1210 |
"Created a chunk of size 1468, which is longer than the specified 1000\n", |
|
|
1211 |
"Created a chunk of size 1490, which is longer than the specified 1000\n", |
|
|
1212 |
"Created a chunk of size 1252, which is longer than the specified 1000\n", |
|
|
1213 |
"Created a chunk of size 1066, which is longer than the specified 1000\n", |
|
|
1214 |
"Created a chunk of size 1012, which is longer than the specified 1000\n", |
|
|
1215 |
"Created a chunk of size 1014, which is longer than the specified 1000\n", |
|
|
1216 |
"Created a chunk of size 1039, which is longer than the specified 1000\n", |
|
|
1217 |
"Created a chunk of size 1129, which is longer than the specified 1000\n", |
|
|
1218 |
"Created a chunk of size 1459, which is longer than the specified 1000\n", |
|
|
1219 |
"Created a chunk of size 1034, which is longer than the specified 1000\n", |
|
|
1220 |
"Created a chunk of size 1332, which is longer than the specified 1000\n", |
|
|
1221 |
"Created a chunk of size 1180, which is longer than the specified 1000\n", |
|
|
1222 |
"Created a chunk of size 1181, which is longer than the specified 1000\n", |
|
|
1223 |
"Created a chunk of size 1487, which is longer than the specified 1000\n", |
|
|
1224 |
"Created a chunk of size 1066, which is longer than the specified 1000\n", |
|
|
1225 |
"Created a chunk of size 1361, which is longer than the specified 1000\n", |
|
|
1226 |
"Created a chunk of size 1425, which is longer than the specified 1000\n", |
|
|
1227 |
"Created a chunk of size 1376, which is longer than the specified 1000\n", |
|
|
1228 |
"Created a chunk of size 1214, which is longer than the specified 1000\n", |
|
|
1229 |
"Created a chunk of size 1063, which is longer than the specified 1000\n", |
|
|
1230 |
"Created a chunk of size 1078, which is longer than the specified 1000\n", |
|
|
1231 |
"Created a chunk of size 1211, which is longer than the specified 1000\n", |
|
|
1232 |
"Created a chunk of size 1486, which is longer than the specified 1000\n", |
|
|
1233 |
"Created a chunk of size 1458, which is longer than the specified 1000\n", |
|
|
1234 |
"Created a chunk of size 1018, which is longer than the specified 1000\n", |
|
|
1235 |
"Created a chunk of size 1319, which is longer than the specified 1000\n", |
|
|
1236 |
"Created a chunk of size 1425, which is longer than the specified 1000\n", |
|
|
1237 |
"Created a chunk of size 1055, which is longer than the specified 1000\n", |
|
|
1238 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
1239 |
"Created a chunk of size 1344, which is longer than the specified 1000\n", |
|
|
1240 |
"Created a chunk of size 1065, which is longer than the specified 1000\n", |
|
|
1241 |
"Created a chunk of size 1103, which is longer than the specified 1000\n", |
|
|
1242 |
"Created a chunk of size 1305, which is longer than the specified 1000\n", |
|
|
1243 |
"Created a chunk of size 1036, which is longer than the specified 1000\n", |
|
|
1244 |
"Created a chunk of size 1112, which is longer than the specified 1000\n", |
|
|
1245 |
"Created a chunk of size 1301, which is longer than the specified 1000\n", |
|
|
1246 |
"Created a chunk of size 1484, which is longer than the specified 1000\n", |
|
|
1247 |
"Created a chunk of size 1483, which is longer than the specified 1000\n", |
|
|
1248 |
"Created a chunk of size 1219, which is longer than the specified 1000\n", |
|
|
1249 |
"Created a chunk of size 1452, which is longer than the specified 1000\n", |
|
|
1250 |
"Created a chunk of size 1038, which is longer than the specified 1000\n", |
|
|
1251 |
"Created a chunk of size 1076, which is longer than the specified 1000\n", |
|
|
1252 |
"Created a chunk of size 1031, which is longer than the specified 1000\n", |
|
|
1253 |
"Created a chunk of size 1032, which is longer than the specified 1000\n", |
|
|
1254 |
"Created a chunk of size 1089, which is longer than the specified 1000\n", |
|
|
1255 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
1256 |
"Created a chunk of size 1087, which is longer than the specified 1000\n", |
|
|
1257 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1258 |
"Created a chunk of size 1488, which is longer than the specified 1000\n", |
|
|
1259 |
"Created a chunk of size 1416, which is longer than the specified 1000\n", |
|
|
1260 |
"Created a chunk of size 1488, which is longer than the specified 1000\n", |
|
|
1261 |
"Created a chunk of size 1085, which is longer than the specified 1000\n", |
|
|
1262 |
"Created a chunk of size 1028, which is longer than the specified 1000\n", |
|
|
1263 |
"Created a chunk of size 1376, which is longer than the specified 1000\n", |
|
|
1264 |
"Created a chunk of size 1316, which is longer than the specified 1000\n", |
|
|
1265 |
"Created a chunk of size 1030, which is longer than the specified 1000\n", |
|
|
1266 |
"Created a chunk of size 1027, which is longer than the specified 1000\n", |
|
|
1267 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1268 |
"Created a chunk of size 1498, which is longer than the specified 1000\n", |
|
|
1269 |
"Created a chunk of size 1444, which is longer than the specified 1000\n", |
|
|
1270 |
"Created a chunk of size 1217, which is longer than the specified 1000\n", |
|
|
1271 |
"Created a chunk of size 1079, which is longer than the specified 1000\n", |
|
|
1272 |
"Created a chunk of size 1367, which is longer than the specified 1000\n", |
|
|
1273 |
"Created a chunk of size 1094, which is longer than the specified 1000\n", |
|
|
1274 |
"Created a chunk of size 1424, which is longer than the specified 1000\n", |
|
|
1275 |
"Created a chunk of size 1193, which is longer than the specified 1000\n", |
|
|
1276 |
"Created a chunk of size 1206, which is longer than the specified 1000\n", |
|
|
1277 |
"Created a chunk of size 1001, which is longer than the specified 1000\n", |
|
|
1278 |
"Created a chunk of size 1357, which is longer than the specified 1000\n", |
|
|
1279 |
"Created a chunk of size 1168, which is longer than the specified 1000\n", |
|
|
1280 |
"Created a chunk of size 1160, which is longer than the specified 1000\n", |
|
|
1281 |
"Created a chunk of size 1155, which is longer than the specified 1000\n", |
|
|
1282 |
"Created a chunk of size 1045, which is longer than the specified 1000\n", |
|
|
1283 |
"Created a chunk of size 1357, which is longer than the specified 1000\n", |
|
|
1284 |
"Created a chunk of size 1262, which is longer than the specified 1000\n", |
|
|
1285 |
"Created a chunk of size 1050, which is longer than the specified 1000\n", |
|
|
1286 |
"Created a chunk of size 1286, which is longer than the specified 1000\n", |
|
|
1287 |
"Created a chunk of size 1411, which is longer than the specified 1000\n", |
|
|
1288 |
"Created a chunk of size 1024, which is longer than the specified 1000\n", |
|
|
1289 |
"Created a chunk of size 1469, which is longer than the specified 1000\n", |
|
|
1290 |
"Created a chunk of size 1175, which is longer than the specified 1000\n", |
|
|
1291 |
"Created a chunk of size 1083, which is longer than the specified 1000\n", |
|
|
1292 |
"Created a chunk of size 1266, which is longer than the specified 1000\n", |
|
|
1293 |
"Created a chunk of size 1430, which is longer than the specified 1000\n", |
|
|
1294 |
"Created a chunk of size 1084, which is longer than the specified 1000\n", |
|
|
1295 |
"Created a chunk of size 1274, which is longer than the specified 1000\n", |
|
|
1296 |
"Created a chunk of size 1336, which is longer than the specified 1000\n", |
|
|
1297 |
"Created a chunk of size 1060, which is longer than the specified 1000\n", |
|
|
1298 |
"Created a chunk of size 1368, which is longer than the specified 1000\n", |
|
|
1299 |
"Created a chunk of size 1399, which is longer than the specified 1000\n", |
|
|
1300 |
"Created a chunk of size 1436, which is longer than the specified 1000\n", |
|
|
1301 |
"Created a chunk of size 1393, which is longer than the specified 1000\n", |
|
|
1302 |
"Created a chunk of size 1475, which is longer than the specified 1000\n", |
|
|
1303 |
"Created a chunk of size 1466, which is longer than the specified 1000\n", |
|
|
1304 |
"Created a chunk of size 1092, which is longer than the specified 1000\n", |
|
|
1305 |
"Created a chunk of size 1456, which is longer than the specified 1000\n", |
|
|
1306 |
"Created a chunk of size 1055, which is longer than the specified 1000\n", |
|
|
1307 |
"Created a chunk of size 1019, which is longer than the specified 1000\n", |
|
|
1308 |
"Created a chunk of size 1034, which is longer than the specified 1000\n", |
|
|
1309 |
"Created a chunk of size 1024, which is longer than the specified 1000\n", |
|
|
1310 |
"Created a chunk of size 1332, which is longer than the specified 1000\n", |
|
|
1311 |
"Created a chunk of size 1436, which is longer than the specified 1000\n", |
|
|
1312 |
"Created a chunk of size 1032, which is longer than the specified 1000\n", |
|
|
1313 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1314 |
"Created a chunk of size 1349, which is longer than the specified 1000\n", |
|
|
1315 |
"Created a chunk of size 1141, which is longer than the specified 1000\n", |
|
|
1316 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
1317 |
"Created a chunk of size 1012, which is longer than the specified 1000\n", |
|
|
1318 |
"Created a chunk of size 1479, which is longer than the specified 1000\n", |
|
|
1319 |
"Created a chunk of size 1421, which is longer than the specified 1000\n", |
|
|
1320 |
"Created a chunk of size 1057, which is longer than the specified 1000\n", |
|
|
1321 |
"Created a chunk of size 1060, which is longer than the specified 1000\n", |
|
|
1322 |
"Created a chunk of size 1038, which is longer than the specified 1000\n", |
|
|
1323 |
"Created a chunk of size 1405, which is longer than the specified 1000\n", |
|
|
1324 |
"Created a chunk of size 1346, which is longer than the specified 1000\n", |
|
|
1325 |
"Created a chunk of size 1442, which is longer than the specified 1000\n", |
|
|
1326 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1327 |
"Created a chunk of size 1259, which is longer than the specified 1000\n", |
|
|
1328 |
"Created a chunk of size 1250, which is longer than the specified 1000\n", |
|
|
1329 |
"Created a chunk of size 1173, which is longer than the specified 1000\n", |
|
|
1330 |
"Created a chunk of size 1446, which is longer than the specified 1000\n", |
|
|
1331 |
"Created a chunk of size 1426, which is longer than the specified 1000\n", |
|
|
1332 |
"Created a chunk of size 1409, which is longer than the specified 1000\n", |
|
|
1333 |
"Created a chunk of size 1451, which is longer than the specified 1000\n", |
|
|
1334 |
"Created a chunk of size 1455, which is longer than the specified 1000\n", |
|
|
1335 |
"Created a chunk of size 1242, which is longer than the specified 1000\n", |
|
|
1336 |
"Created a chunk of size 1415, which is longer than the specified 1000\n", |
|
|
1337 |
"Created a chunk of size 1491, which is longer than the specified 1000\n", |
|
|
1338 |
"Created a chunk of size 1112, which is longer than the specified 1000\n", |
|
|
1339 |
"Created a chunk of size 1175, which is longer than the specified 1000\n", |
|
|
1340 |
"Created a chunk of size 1476, which is longer than the specified 1000\n", |
|
|
1341 |
"Created a chunk of size 1037, which is longer than the specified 1000\n", |
|
|
1342 |
"Created a chunk of size 1486, which is longer than the specified 1000\n", |
|
|
1343 |
"Created a chunk of size 1379, which is longer than the specified 1000\n", |
|
|
1344 |
"Created a chunk of size 1490, which is longer than the specified 1000\n", |
|
|
1345 |
"Created a chunk of size 1233, which is longer than the specified 1000\n", |
|
|
1346 |
"Created a chunk of size 1465, which is longer than the specified 1000\n", |
|
|
1347 |
"Created a chunk of size 1296, which is longer than the specified 1000\n", |
|
|
1348 |
"Created a chunk of size 1491, which is longer than the specified 1000\n", |
|
|
1349 |
"Created a chunk of size 1426, which is longer than the specified 1000\n", |
|
|
1350 |
"Created a chunk of size 1124, which is longer than the specified 1000\n", |
|
|
1351 |
"Created a chunk of size 1243, which is longer than the specified 1000\n", |
|
|
1352 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1353 |
"Created a chunk of size 1149, which is longer than the specified 1000\n", |
|
|
1354 |
"Created a chunk of size 1300, which is longer than the specified 1000\n", |
|
|
1355 |
"Created a chunk of size 1072, which is longer than the specified 1000\n", |
|
|
1356 |
"Created a chunk of size 1461, which is longer than the specified 1000\n", |
|
|
1357 |
"Created a chunk of size 1331, which is longer than the specified 1000\n", |
|
|
1358 |
"Created a chunk of size 1144, which is longer than the specified 1000\n", |
|
|
1359 |
"Created a chunk of size 1155, which is longer than the specified 1000\n", |
|
|
1360 |
"Created a chunk of size 1338, which is longer than the specified 1000\n", |
|
|
1361 |
"Created a chunk of size 1012, which is longer than the specified 1000\n", |
|
|
1362 |
"Created a chunk of size 1174, which is longer than the specified 1000\n", |
|
|
1363 |
"Created a chunk of size 1268, which is longer than the specified 1000\n", |
|
|
1364 |
"Created a chunk of size 1019, which is longer than the specified 1000\n", |
|
|
1365 |
"Created a chunk of size 1055, which is longer than the specified 1000\n", |
|
|
1366 |
"Created a chunk of size 1408, which is longer than the specified 1000\n", |
|
|
1367 |
"Created a chunk of size 1403, which is longer than the specified 1000\n", |
|
|
1368 |
"Created a chunk of size 1485, which is longer than the specified 1000\n", |
|
|
1369 |
"Created a chunk of size 1062, which is longer than the specified 1000\n", |
|
|
1370 |
"Created a chunk of size 1124, which is longer than the specified 1000\n", |
|
|
1371 |
"Created a chunk of size 1469, which is longer than the specified 1000\n", |
|
|
1372 |
"Created a chunk of size 1053, which is longer than the specified 1000\n", |
|
|
1373 |
"Created a chunk of size 1185, which is longer than the specified 1000\n", |
|
|
1374 |
"Created a chunk of size 1405, which is longer than the specified 1000\n", |
|
|
1375 |
"Created a chunk of size 1079, which is longer than the specified 1000\n", |
|
|
1376 |
"Created a chunk of size 1256, which is longer than the specified 1000\n", |
|
|
1377 |
"Created a chunk of size 1392, which is longer than the specified 1000\n", |
|
|
1378 |
"Created a chunk of size 1375, which is longer than the specified 1000\n", |
|
|
1379 |
"Created a chunk of size 1127, which is longer than the specified 1000\n", |
|
|
1380 |
"Created a chunk of size 1057, which is longer than the specified 1000\n", |
|
|
1381 |
"Created a chunk of size 1103, which is longer than the specified 1000\n", |
|
|
1382 |
"Created a chunk of size 1293, which is longer than the specified 1000\n", |
|
|
1383 |
"Created a chunk of size 1184, which is longer than the specified 1000\n", |
|
|
1384 |
"Created a chunk of size 1427, which is longer than the specified 1000\n", |
|
|
1385 |
"Created a chunk of size 1147, which is longer than the specified 1000\n", |
|
|
1386 |
"Created a chunk of size 1148, which is longer than the specified 1000\n", |
|
|
1387 |
"Created a chunk of size 1469, which is longer than the specified 1000\n", |
|
|
1388 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1389 |
"Created a chunk of size 1322, which is longer than the specified 1000\n", |
|
|
1390 |
"Created a chunk of size 1446, which is longer than the specified 1000\n", |
|
|
1391 |
"Created a chunk of size 1198, which is longer than the specified 1000\n", |
|
|
1392 |
"Created a chunk of size 1031, which is longer than the specified 1000\n", |
|
|
1393 |
"Created a chunk of size 1459, which is longer than the specified 1000\n", |
|
|
1394 |
"Created a chunk of size 1226, which is longer than the specified 1000\n", |
|
|
1395 |
"Created a chunk of size 1189, which is longer than the specified 1000\n", |
|
|
1396 |
"Created a chunk of size 1489, which is longer than the specified 1000\n", |
|
|
1397 |
"Created a chunk of size 1429, which is longer than the specified 1000\n", |
|
|
1398 |
"Created a chunk of size 1086, which is longer than the specified 1000\n", |
|
|
1399 |
"Created a chunk of size 1031, which is longer than the specified 1000\n", |
|
|
1400 |
"Created a chunk of size 1498, which is longer than the specified 1000\n", |
|
|
1401 |
"Created a chunk of size 1415, which is longer than the specified 1000\n", |
|
|
1402 |
"Created a chunk of size 1278, which is longer than the specified 1000\n", |
|
|
1403 |
"Created a chunk of size 1459, which is longer than the specified 1000\n", |
|
|
1404 |
"Created a chunk of size 1456, which is longer than the specified 1000\n", |
|
|
1405 |
"Created a chunk of size 1243, which is longer than the specified 1000\n", |
|
|
1406 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1407 |
"Created a chunk of size 1105, which is longer than the specified 1000\n", |
|
|
1408 |
"Created a chunk of size 1470, which is longer than the specified 1000\n", |
|
|
1409 |
"Created a chunk of size 1055, which is longer than the specified 1000\n", |
|
|
1410 |
"Created a chunk of size 1407, which is longer than the specified 1000\n", |
|
|
1411 |
"Created a chunk of size 1375, which is longer than the specified 1000\n", |
|
|
1412 |
"Created a chunk of size 1300, which is longer than the specified 1000\n", |
|
|
1413 |
"Created a chunk of size 1107, which is longer than the specified 1000\n", |
|
|
1414 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
1415 |
"Created a chunk of size 1432, which is longer than the specified 1000\n", |
|
|
1416 |
"Created a chunk of size 1491, which is longer than the specified 1000\n", |
|
|
1417 |
"Created a chunk of size 1500, which is longer than the specified 1000\n", |
|
|
1418 |
"Created a chunk of size 1167, which is longer than the specified 1000\n", |
|
|
1419 |
"Created a chunk of size 1429, which is longer than the specified 1000\n", |
|
|
1420 |
"Created a chunk of size 1219, which is longer than the specified 1000\n", |
|
|
1421 |
"Created a chunk of size 1257, which is longer than the specified 1000\n", |
|
|
1422 |
"Created a chunk of size 1326, which is longer than the specified 1000\n", |
|
|
1423 |
"Created a chunk of size 1474, which is longer than the specified 1000\n", |
|
|
1424 |
"Created a chunk of size 1179, which is longer than the specified 1000\n", |
|
|
1425 |
"Created a chunk of size 1177, which is longer than the specified 1000\n", |
|
|
1426 |
"Created a chunk of size 1008, which is longer than the specified 1000\n", |
|
|
1427 |
"Created a chunk of size 1404, which is longer than the specified 1000\n", |
|
|
1428 |
"Created a chunk of size 1318, which is longer than the specified 1000\n", |
|
|
1429 |
"Created a chunk of size 1362, which is longer than the specified 1000\n", |
|
|
1430 |
"Created a chunk of size 1140, which is longer than the specified 1000\n", |
|
|
1431 |
"Created a chunk of size 1188, which is longer than the specified 1000\n", |
|
|
1432 |
"Created a chunk of size 1190, which is longer than the specified 1000\n", |
|
|
1433 |
"Created a chunk of size 1002, which is longer than the specified 1000\n", |
|
|
1434 |
"Created a chunk of size 1493, which is longer than the specified 1000\n", |
|
|
1435 |
"Created a chunk of size 1132, which is longer than the specified 1000\n", |
|
|
1436 |
"Created a chunk of size 1456, which is longer than the specified 1000\n", |
|
|
1437 |
"Created a chunk of size 1446, which is longer than the specified 1000\n", |
|
|
1438 |
"Created a chunk of size 1141, which is longer than the specified 1000\n", |
|
|
1439 |
"Created a chunk of size 1367, which is longer than the specified 1000\n", |
|
|
1440 |
"Created a chunk of size 1128, which is longer than the specified 1000\n", |
|
|
1441 |
"Created a chunk of size 1173, which is longer than the specified 1000\n", |
|
|
1442 |
"Created a chunk of size 1314, which is longer than the specified 1000\n", |
|
|
1443 |
"Created a chunk of size 1480, which is longer than the specified 1000\n", |
|
|
1444 |
"Created a chunk of size 1480, which is longer than the specified 1000\n", |
|
|
1445 |
"Created a chunk of size 1133, which is longer than the specified 1000\n", |
|
|
1446 |
"Created a chunk of size 1107, which is longer than the specified 1000\n", |
|
|
1447 |
"Created a chunk of size 1115, which is longer than the specified 1000\n", |
|
|
1448 |
"Created a chunk of size 1003, which is longer than the specified 1000\n", |
|
|
1449 |
"Created a chunk of size 1485, which is longer than the specified 1000\n", |
|
|
1450 |
"Created a chunk of size 1371, which is longer than the specified 1000\n", |
|
|
1451 |
"Created a chunk of size 1493, which is longer than the specified 1000\n", |
|
|
1452 |
"Created a chunk of size 1237, which is longer than the specified 1000\n", |
|
|
1453 |
"Created a chunk of size 1246, which is longer than the specified 1000\n", |
|
|
1454 |
"Created a chunk of size 1165, which is longer than the specified 1000\n", |
|
|
1455 |
"Created a chunk of size 1059, which is longer than the specified 1000\n", |
|
|
1456 |
"Created a chunk of size 1101, which is longer than the specified 1000\n", |
|
|
1457 |
"Created a chunk of size 1042, which is longer than the specified 1000\n", |
|
|
1458 |
"Created a chunk of size 1121, which is longer than the specified 1000\n", |
|
|
1459 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1460 |
"Created a chunk of size 1086, which is longer than the specified 1000\n", |
|
|
1461 |
"Created a chunk of size 1376, which is longer than the specified 1000\n", |
|
|
1462 |
"Created a chunk of size 1494, which is longer than the specified 1000\n", |
|
|
1463 |
"Created a chunk of size 1007, which is longer than the specified 1000\n", |
|
|
1464 |
"Created a chunk of size 1437, which is longer than the specified 1000\n", |
|
|
1465 |
"Created a chunk of size 1110, which is longer than the specified 1000\n", |
|
|
1466 |
"Created a chunk of size 1470, which is longer than the specified 1000\n", |
|
|
1467 |
"Created a chunk of size 1422, which is longer than the specified 1000\n", |
|
|
1468 |
"Created a chunk of size 1186, which is longer than the specified 1000\n", |
|
|
1469 |
"Created a chunk of size 1344, which is longer than the specified 1000\n", |
|
|
1470 |
"Created a chunk of size 1140, which is longer than the specified 1000\n", |
|
|
1471 |
"Created a chunk of size 1490, which is longer than the specified 1000\n", |
|
|
1472 |
"Created a chunk of size 1110, which is longer than the specified 1000\n", |
|
|
1473 |
"Created a chunk of size 1096, which is longer than the specified 1000\n", |
|
|
1474 |
"Created a chunk of size 1026, which is longer than the specified 1000\n", |
|
|
1475 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1476 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1477 |
"Created a chunk of size 1010, which is longer than the specified 1000\n", |
|
|
1478 |
"Created a chunk of size 1097, which is longer than the specified 1000\n", |
|
|
1479 |
"Created a chunk of size 1433, which is longer than the specified 1000\n", |
|
|
1480 |
"Created a chunk of size 1047, which is longer than the specified 1000\n", |
|
|
1481 |
"Created a chunk of size 1406, which is longer than the specified 1000\n", |
|
|
1482 |
"Created a chunk of size 1020, which is longer than the specified 1000\n", |
|
|
1483 |
"Created a chunk of size 1229, which is longer than the specified 1000\n", |
|
|
1484 |
"Created a chunk of size 1432, which is longer than the specified 1000\n", |
|
|
1485 |
"Created a chunk of size 1279, which is longer than the specified 1000\n", |
|
|
1486 |
"Created a chunk of size 1327, which is longer than the specified 1000\n", |
|
|
1487 |
"Created a chunk of size 1470, which is longer than the specified 1000\n", |
|
|
1488 |
"Created a chunk of size 1495, which is longer than the specified 1000\n", |
|
|
1489 |
"Created a chunk of size 1473, which is longer than the specified 1000\n", |
|
|
1490 |
"Created a chunk of size 1493, which is longer than the specified 1000\n", |
|
|
1491 |
"Created a chunk of size 1253, which is longer than the specified 1000\n", |
|
|
1492 |
"Created a chunk of size 1307, which is longer than the specified 1000\n", |
|
|
1493 |
"Created a chunk of size 1481, which is longer than the specified 1000\n", |
|
|
1494 |
"Created a chunk of size 1494, which is longer than the specified 1000\n", |
|
|
1495 |
"Created a chunk of size 1468, which is longer than the specified 1000\n", |
|
|
1496 |
"Created a chunk of size 1341, which is longer than the specified 1000\n", |
|
|
1497 |
"Created a chunk of size 1253, which is longer than the specified 1000\n", |
|
|
1498 |
"Created a chunk of size 1496, which is longer than the specified 1000\n", |
|
|
1499 |
"Created a chunk of size 1363, which is longer than the specified 1000\n", |
|
|
1500 |
"Created a chunk of size 1440, which is longer than the specified 1000\n", |
|
|
1501 |
"Created a chunk of size 1213, which is longer than the specified 1000\n", |
|
|
1502 |
"Created a chunk of size 1460, which is longer than the specified 1000\n", |
|
|
1503 |
"Created a chunk of size 1040, which is longer than the specified 1000\n", |
|
|
1504 |
"Created a chunk of size 1225, which is longer than the specified 1000\n", |
|
|
1505 |
"Created a chunk of size 1460, which is longer than the specified 1000\n", |
|
|
1506 |
"Created a chunk of size 1232, which is longer than the specified 1000\n", |
|
|
1507 |
"Created a chunk of size 1373, which is longer than the specified 1000\n", |
|
|
1508 |
"Created a chunk of size 1265, which is longer than the specified 1000\n", |
|
|
1509 |
"Created a chunk of size 1009, which is longer than the specified 1000\n", |
|
|
1510 |
"Created a chunk of size 1364, which is longer than the specified 1000\n", |
|
|
1511 |
"Created a chunk of size 1217, which is longer than the specified 1000\n", |
|
|
1512 |
"Created a chunk of size 1461, which is longer than the specified 1000\n", |
|
|
1513 |
"Created a chunk of size 1277, which is longer than the specified 1000\n", |
|
|
1514 |
"Created a chunk of size 1211, which is longer than the specified 1000\n", |
|
|
1515 |
"Created a chunk of size 1227, which is longer than the specified 1000\n", |
|
|
1516 |
"Created a chunk of size 1498, which is longer than the specified 1000\n", |
|
|
1517 |
"Created a chunk of size 1471, which is longer than the specified 1000\n", |
|
|
1518 |
"Created a chunk of size 1002, which is longer than the specified 1000\n", |
|
|
1519 |
"Created a chunk of size 1154, which is longer than the specified 1000\n", |
|
|
1520 |
"Created a chunk of size 1443, which is longer than the specified 1000\n", |
|
|
1521 |
"Created a chunk of size 1449, which is longer than the specified 1000\n", |
|
|
1522 |
"Created a chunk of size 1483, which is longer than the specified 1000\n", |
|
|
1523 |
"Created a chunk of size 1431, which is longer than the specified 1000\n", |
|
|
1524 |
"Created a chunk of size 1469, which is longer than the specified 1000\n", |
|
|
1525 |
"Created a chunk of size 1496, which is longer than the specified 1000\n", |
|
|
1526 |
"Created a chunk of size 1496, which is longer than the specified 1000\n", |
|
|
1527 |
"Created a chunk of size 1496, which is longer than the specified 1000\n", |
|
|
1528 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
1529 |
"Created a chunk of size 1462, which is longer than the specified 1000\n", |
|
|
1530 |
"Created a chunk of size 1344, which is longer than the specified 1000\n", |
|
|
1531 |
"Created a chunk of size 1280, which is longer than the specified 1000\n", |
|
|
1532 |
"Created a chunk of size 1132, which is longer than the specified 1000\n", |
|
|
1533 |
"Created a chunk of size 1061, which is longer than the specified 1000\n", |
|
|
1534 |
"Created a chunk of size 1101, which is longer than the specified 1000\n", |
|
|
1535 |
"Created a chunk of size 1406, which is longer than the specified 1000\n", |
|
|
1536 |
"Created a chunk of size 1475, which is longer than the specified 1000\n", |
|
|
1537 |
"Created a chunk of size 1073, which is longer than the specified 1000\n", |
|
|
1538 |
"Created a chunk of size 1038, which is longer than the specified 1000\n", |
|
|
1539 |
"Created a chunk of size 1445, which is longer than the specified 1000\n", |
|
|
1540 |
"Created a chunk of size 1342, which is longer than the specified 1000\n", |
|
|
1541 |
"Created a chunk of size 1356, which is longer than the specified 1000\n", |
|
|
1542 |
"Created a chunk of size 1369, which is longer than the specified 1000\n", |
|
|
1543 |
"Created a chunk of size 1450, which is longer than the specified 1000\n", |
|
|
1544 |
"Created a chunk of size 1038, which is longer than the specified 1000\n", |
|
|
1545 |
"Created a chunk of size 1428, which is longer than the specified 1000\n", |
|
|
1546 |
"Created a chunk of size 1471, which is longer than the specified 1000\n", |
|
|
1547 |
"Created a chunk of size 1274, which is longer than the specified 1000\n", |
|
|
1548 |
"Created a chunk of size 1137, which is longer than the specified 1000\n", |
|
|
1549 |
"Created a chunk of size 1245, which is longer than the specified 1000\n", |
|
|
1550 |
"Created a chunk of size 1254, which is longer than the specified 1000\n", |
|
|
1551 |
"Created a chunk of size 1006, which is longer than the specified 1000\n", |
|
|
1552 |
"Created a chunk of size 1494, which is longer than the specified 1000\n", |
|
|
1553 |
"Created a chunk of size 1227, which is longer than the specified 1000\n", |
|
|
1554 |
"Created a chunk of size 1484, which is longer than the specified 1000\n", |
|
|
1555 |
"Created a chunk of size 1128, which is longer than the specified 1000\n", |
|
|
1556 |
"Created a chunk of size 1219, which is longer than the specified 1000\n", |
|
|
1557 |
"Created a chunk of size 1028, which is longer than the specified 1000\n", |
|
|
1558 |
"Created a chunk of size 1478, which is longer than the specified 1000\n", |
|
|
1559 |
"Created a chunk of size 1493, which is longer than the specified 1000\n", |
|
|
1560 |
"Created a chunk of size 1365, which is longer than the specified 1000\n", |
|
|
1561 |
"Created a chunk of size 1391, which is longer than the specified 1000\n", |
|
|
1562 |
"Created a chunk of size 1058, which is longer than the specified 1000\n", |
|
|
1563 |
"Created a chunk of size 1444, which is longer than the specified 1000\n", |
|
|
1564 |
"Created a chunk of size 1249, which is longer than the specified 1000\n", |
|
|
1565 |
"Created a chunk of size 1408, which is longer than the specified 1000\n", |
|
|
1566 |
"Created a chunk of size 1339, which is longer than the specified 1000\n", |
|
|
1567 |
"Created a chunk of size 1489, which is longer than the specified 1000\n", |
|
|
1568 |
"Created a chunk of size 1472, which is longer than the specified 1000\n", |
|
|
1569 |
"Created a chunk of size 1435, which is longer than the specified 1000\n", |
|
|
1570 |
"Created a chunk of size 1457, which is longer than the specified 1000\n", |
|
|
1571 |
"Created a chunk of size 1357, which is longer than the specified 1000\n", |
|
|
1572 |
"Created a chunk of size 1118, which is longer than the specified 1000\n", |
|
|
1573 |
"Created a chunk of size 1211, which is longer than the specified 1000\n", |
|
|
1574 |
"Created a chunk of size 1221, which is longer than the specified 1000\n", |
|
|
1575 |
"Created a chunk of size 1003, which is longer than the specified 1000\n", |
|
|
1576 |
"Created a chunk of size 1062, which is longer than the specified 1000\n", |
|
|
1577 |
"Created a chunk of size 1118, which is longer than the specified 1000\n", |
|
|
1578 |
"Created a chunk of size 1110, which is longer than the specified 1000\n", |
|
|
1579 |
"Created a chunk of size 1230, which is longer than the specified 1000\n", |
|
|
1580 |
"Created a chunk of size 1242, which is longer than the specified 1000\n", |
|
|
1581 |
"Created a chunk of size 1475, which is longer than the specified 1000\n", |
|
|
1582 |
"Created a chunk of size 1322, which is longer than the specified 1000\n", |
|
|
1583 |
"Created a chunk of size 1362, which is longer than the specified 1000\n", |
|
|
1584 |
"Created a chunk of size 1380, which is longer than the specified 1000\n", |
|
|
1585 |
"Created a chunk of size 1411, which is longer than the specified 1000\n", |
|
|
1586 |
"Created a chunk of size 1215, which is longer than the specified 1000\n", |
|
|
1587 |
"Created a chunk of size 1036, which is longer than the specified 1000\n", |
|
|
1588 |
"Created a chunk of size 1013, which is longer than the specified 1000\n", |
|
|
1589 |
"Created a chunk of size 1133, which is longer than the specified 1000\n", |
|
|
1590 |
"Created a chunk of size 1025, which is longer than the specified 1000\n", |
|
|
1591 |
"Created a chunk of size 1354, which is longer than the specified 1000\n", |
|
|
1592 |
"Created a chunk of size 1269, which is longer than the specified 1000\n", |
|
|
1593 |
"Created a chunk of size 1243, which is longer than the specified 1000\n", |
|
|
1594 |
"Created a chunk of size 1441, which is longer than the specified 1000\n", |
|
|
1595 |
"Created a chunk of size 1341, which is longer than the specified 1000\n", |
|
|
1596 |
"Created a chunk of size 1213, which is longer than the specified 1000\n", |
|
|
1597 |
"Created a chunk of size 1369, which is longer than the specified 1000\n", |
|
|
1598 |
"Created a chunk of size 1095, which is longer than the specified 1000\n", |
|
|
1599 |
"Created a chunk of size 1356, which is longer than the specified 1000\n", |
|
|
1600 |
"Created a chunk of size 1402, which is longer than the specified 1000\n", |
|
|
1601 |
"Created a chunk of size 1436, which is longer than the specified 1000\n", |
|
|
1602 |
"Created a chunk of size 1475, which is longer than the specified 1000\n", |
|
|
1603 |
"Created a chunk of size 1082, which is longer than the specified 1000\n", |
|
|
1604 |
"Created a chunk of size 1429, which is longer than the specified 1000\n", |
|
|
1605 |
"Created a chunk of size 1393, which is longer than the specified 1000\n", |
|
|
1606 |
"Created a chunk of size 1183, which is longer than the specified 1000\n", |
|
|
1607 |
"Created a chunk of size 1215, which is longer than the specified 1000\n", |
|
|
1608 |
"Created a chunk of size 1085, which is longer than the specified 1000\n", |
|
|
1609 |
"Created a chunk of size 1250, which is longer than the specified 1000\n", |
|
|
1610 |
"Created a chunk of size 1448, which is longer than the specified 1000\n", |
|
|
1611 |
"Created a chunk of size 1469, which is longer than the specified 1000\n", |
|
|
1612 |
"Created a chunk of size 1309, which is longer than the specified 1000\n", |
|
|
1613 |
"Created a chunk of size 1037, which is longer than the specified 1000\n", |
|
|
1614 |
"Created a chunk of size 1452, which is longer than the specified 1000\n", |
|
|
1615 |
"Created a chunk of size 1134, which is longer than the specified 1000\n", |
|
|
1616 |
"Created a chunk of size 1018, which is longer than the specified 1000\n", |
|
|
1617 |
"Created a chunk of size 1400, which is longer than the specified 1000\n", |
|
|
1618 |
"Created a chunk of size 1011, which is longer than the specified 1000\n", |
|
|
1619 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1620 |
"Created a chunk of size 1287, which is longer than the specified 1000\n", |
|
|
1621 |
"Created a chunk of size 1176, which is longer than the specified 1000\n", |
|
|
1622 |
"Created a chunk of size 1124, which is longer than the specified 1000\n", |
|
|
1623 |
"Created a chunk of size 1170, which is longer than the specified 1000\n", |
|
|
1624 |
"Created a chunk of size 1202, which is longer than the specified 1000\n", |
|
|
1625 |
"Created a chunk of size 1190, which is longer than the specified 1000\n", |
|
|
1626 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1627 |
"Created a chunk of size 1467, which is longer than the specified 1000\n", |
|
|
1628 |
"Created a chunk of size 1464, which is longer than the specified 1000\n", |
|
|
1629 |
"Created a chunk of size 1307, which is longer than the specified 1000\n", |
|
|
1630 |
"Created a chunk of size 1074, which is longer than the specified 1000\n", |
|
|
1631 |
"Created a chunk of size 1057, which is longer than the specified 1000\n", |
|
|
1632 |
"Created a chunk of size 1358, which is longer than the specified 1000\n", |
|
|
1633 |
"Created a chunk of size 1050, which is longer than the specified 1000\n", |
|
|
1634 |
"Created a chunk of size 1160, which is longer than the specified 1000\n", |
|
|
1635 |
"Created a chunk of size 1499, which is longer than the specified 1000\n", |
|
|
1636 |
"Created a chunk of size 1497, which is longer than the specified 1000\n", |
|
|
1637 |
"Created a chunk of size 1237, which is longer than the specified 1000\n", |
|
|
1638 |
"Created a chunk of size 1157, which is longer than the specified 1000\n", |
|
|
1639 |
"Created a chunk of size 1360, which is longer than the specified 1000\n", |
|
|
1640 |
"Created a chunk of size 1437, which is longer than the specified 1000\n", |
|
|
1641 |
"Created a chunk of size 1472, which is longer than the specified 1000\n", |
|
|
1642 |
"Created a chunk of size 1139, which is longer than the specified 1000\n", |
|
|
1643 |
"Created a chunk of size 1455, which is longer than the specified 1000\n", |
|
|
1644 |
"Created a chunk of size 1477, which is longer than the specified 1000\n", |
|
|
1645 |
"Created a chunk of size 1270, which is longer than the specified 1000\n" |
|
|
1646 |
] |
|
|
1647 |
} |
|
|
1648 |
], |
|
|
1649 |
"source": [ |
|
|
1650 |
"from langchain.text_splitter import CharacterTextSplitter\n", |
|
|
1651 |
"from langchain_community.embeddings import HuggingFaceEmbeddings\n", |
|
|
1652 |
"from langchain_experimental.text_splitter import SemanticChunker\n", |
|
|
1653 |
"\n", |
|
|
1654 |
"text_splitter = SemanticChunker(HuggingFaceEmbeddings())\n", |
|
|
1655 |
"text_splitter = CharacterTextSplitter(\n", |
|
|
1656 |
" chunk_size=1000,\n", |
|
|
1657 |
" chunk_overlap=50,\n", |
|
|
1658 |
" length_function=len,\n", |
|
|
1659 |
" is_separator_regex=False,\n", |
|
|
1660 |
")\n", |
|
|
1661 |
"\n", |
|
|
1662 |
"chunks = text_splitter.split_documents(documents)" |
|
|
1663 |
] |
|
|
1664 |
}, |
|
|
1665 |
{ |
|
|
1666 |
"cell_type": "code", |
|
|
1667 |
"execution_count": null, |
|
|
1668 |
"metadata": {}, |
|
|
1669 |
"outputs": [], |
|
|
1670 |
"source": [ |
|
|
1671 |
"chunks" |
|
|
1672 |
] |
|
|
1673 |
}, |
|
|
1674 |
{ |
|
|
1675 |
"cell_type": "code", |
|
|
1676 |
"execution_count": 6, |
|
|
1677 |
"metadata": {}, |
|
|
1678 |
"outputs": [ |
|
|
1679 |
{ |
|
|
1680 |
"name": "stderr", |
|
|
1681 |
"output_type": "stream", |
|
|
1682 |
"text": [ |
|
|
1683 |
"/home/mabdallah/miniconda3/lib/python3.11/site-packages/weaviate/warnings.py:158: DeprecationWarning: Dep016: You are using the Weaviate v3 client, which is deprecated.\n", |
|
|
1684 |
" Consider upgrading to the new and improved v4 client instead!\n", |
|
|
1685 |
" See here for usage: https://weaviate.io/developers/weaviate/client-libraries/python\n", |
|
|
1686 |
" \n", |
|
|
1687 |
" warnings.warn(\n", |
|
|
1688 |
"{\"action\":\"startup\",\"default_vectorizer_module\":\"none\",\"level\":\"info\",\"msg\":\"the default vectorizer modules is set to \\\"none\\\", as a result all new schema classes without an explicit vectorizer setting, will use this vectorizer\",\"time\":\"2024-02-26T12:27:58+01:00\"}\n", |
|
|
1689 |
"{\"action\":\"startup\",\"auto_schema_enabled\":true,\"level\":\"info\",\"msg\":\"auto schema enabled setting is set to \\\"true\\\"\",\"time\":\"2024-02-26T12:27:58+01:00\"}\n", |
|
|
1690 |
"{\"level\":\"info\",\"msg\":\"No resource limits set, weaviate will use all available memory and CPU. To limit resources, set LIMIT_RESOURCES=true\",\"time\":\"2024-02-26T12:27:58+01:00\"}\n", |
|
|
1691 |
"{\"level\":\"warning\",\"msg\":\"Multiple vector spaces are present, GraphQL Explore and REST API list objects endpoint module include params has been disabled as a result.\",\"time\":\"2024-02-26T12:27:58+01:00\"}\n", |
|
|
1692 |
"{\"action\":\"grpc_startup\",\"level\":\"info\",\"msg\":\"grpc server listening at [::]:50060\",\"time\":\"2024-02-26T12:27:58+01:00\"}\n", |
|
|
1693 |
"adding route DELETE /v1/schema/{className}/tenants \"tenants.delete\"\n", |
|
|
1694 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"delete tenants from a specific class\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"tenants.delete\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"tenants\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0035e5d40), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035d6c78)}}\n", |
|
|
1695 |
"adding route DELETE /v1/objects/{id} \"objects.delete\"\n", |
|
|
1696 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":true, \"x-available-in-websocket\":true, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Deletes an Object from the system.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Delete an Object based on its UUID.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.delete\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc00345d290)}}\n", |
|
|
1697 |
"adding route DELETE /v1/objects/{id}/references/{propertyName} \"objects.references.delete\"\n", |
|
|
1698 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Delete the single reference that is given in the body from the list of references that this property has.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Delete the single reference that is given in the body from the list of references that this property has.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.references.delete\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique name of the property related to the Object.\", Name:\"propertyName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0034b9d40), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034a1800)}}\n", |
|
|
1699 |
"adding route DELETE /v1/schema/{className} \"schema.objects.delete\"\n", |
|
|
1700 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate.meta\"}}}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Remove an Object class (and all data in the instances) from the schema.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.delete\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034063d8)}}\n", |
|
|
1701 |
"adding route DELETE /v1/batch/objects \"batch.objects.delete\"\n", |
|
|
1702 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Delete Objects in bulk that match a certain filter.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"batch\", \"objects\"}, Summary:\"Deletes Objects based on a match filter as a batch.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"batch.objects.delete\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0033598c0), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0033662a0)}}\n", |
|
|
1703 |
"adding route DELETE /v1/objects/{className}/{id}/references/{propertyName} \"objects.class.references.delete\"\n", |
|
|
1704 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Delete the single reference that is given in the body from the list of references that this property of a data object has\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Delete the single reference that is given in the body from the list of references that this property has.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.references.delete\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The class name as defined in the schema\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique name of the property related to the Object.\", Name:\"propertyName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc00339d680), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0033ae3c0)}}\n", |
|
|
1705 |
"adding route DELETE /v1/objects/{className}/{id} \"objects.class.delete\"\n", |
|
|
1706 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":true, \"x-available-in-websocket\":true, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Delete a single data object.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Delete object based on its class and UUID.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.delete\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003539aa0)}}\n", |
|
|
1707 |
"adding route HEAD /v1/objects/{id} \"objects.head\"\n", |
|
|
1708 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":true, \"x-available-in-websocket\":true, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Checks if an Object exists in the system.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Checks Object's existence based on its UUID.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.head\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc00345d770)}}\n", |
|
|
1709 |
"adding route HEAD /v1/objects/{className}/{id} \"objects.class.head\"\n", |
|
|
1710 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":true, \"x-available-in-websocket\":true, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Checks if a data object exists without retrieving it.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Checks object's existence based on its class and uuid.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.head\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The class name as defined in the schema\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The uuid of the data object\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003586330)}}\n", |
|
|
1711 |
"adding route PATCH /v1/objects/{id} \"objects.patch\"\n", |
|
|
1712 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Updates an Object. This method supports json-merge style patch semantics (RFC 7396). Provided meta-data and schema values are validated. LastUpdateTime is set to the time this function is called.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Update an Object based on its UUID (using patch semantics).\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.patch\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"RFC 7396-style patch, the body contains the object to merge into the existing object.\", Name:\"body\", In:\"body\", Required:false, Schema:(*spec.Schema)(0xc00348d200), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc00345dde8)}}\n", |
|
|
1713 |
"adding route PATCH /v1/objects/{className}/{id} \"objects.class.patch\"\n", |
|
|
1714 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Update an individual data object based on its class and uuid. This method supports json-merge style patch semantics (RFC 7396). Provided meta-data and schema values are validated. LastUpdateTime is set to the time this function is called.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Update an Object based on its UUID (using patch semantics).\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.patch\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The class name as defined in the schema\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The uuid of the data object to update.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"RFC 7396-style patch, the body contains the object to merge into the existing object.\", Name:\"body\", In:\"body\", Required:false, Schema:(*spec.Schema)(0xc00358e6c0), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003586b28)}}\n", |
|
|
1715 |
"adding route GET /v1/objects/{className}/{id} \"objects.class.get\"\n", |
|
|
1716 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query\"}}}, OperationProps:spec.OperationProps{Description:\"Get a single data object\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Get a specific Object based on its class and UUID. Also available as Websocket bus.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Include additional information, such as classification infos. Allowed values include: classification, vector, interpretation\", Name:\"include\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The target node which should fulfill the request\", Name:\"node_name\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035389f0)}}\n", |
|
|
1717 |
"adding route GET /v1/nodes/{className} \"nodes.get.class\"\n", |
|
|
1718 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.nodes.status.get.class\"}}}, OperationProps:spec.OperationProps{Description:\"Returns status of Weaviate DB.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"nodes\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"nodes.get.class\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:\"minimal\", Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Controls the verbosity of the output, possible values are: \\\"minimal\\\", \\\"verbose\\\". Defaults to \\\"minimal\\\".\", Name:\"output\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003407998)}}\n", |
|
|
1719 |
"adding route GET /v1/meta \"meta.get\"\n", |
|
|
1720 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query.meta\"}}}, OperationProps:spec.OperationProps{Description:\"Gives meta information about the server and can be used to provide information to another Weaviate instance that wants to interact with the current instance.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"meta\"}, Summary:\"Returns meta information of the current Weaviate instance.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"meta.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc0033af2c0)}}\n", |
|
|
1721 |
"adding route GET /v1/objects/{id} \"objects.get\"\n", |
|
|
1722 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query\"}}}, OperationProps:spec.OperationProps{Description:\"Lists Objects.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Get a specific Object based on its UUID and a Object UUID. Also available as Websocket bus.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.get\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Include additional information, such as classification infos. Allowed values include: classification, vector, interpretation\", Name:\"include\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc00345c3d8)}}\n", |
|
|
1723 |
"adding route GET /v1/classifications/{id} \"classifications.get\"\n", |
|
|
1724 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.classifications.get\"}}}, OperationProps:spec.OperationProps{Description:\"Get status, results and metadata of a previously created classification\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"classifications\"}, Summary:\"View previously created classification\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"classifications.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"classification id\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003233fb0)}}\n", |
|
|
1725 |
"adding route GET /v1/backups/{backend}/{id}/restore \"backups.restore.status\"\n", |
|
|
1726 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.backup\"}}}, OperationProps:spec.OperationProps{Description:\"Returns status of a backup restoration attempt for a set of classes\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"backups\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"backups.restore.status\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Backup backend name e.g. filesystem, gcs, s3.\", Name:\"backend\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The ID of a backup. Must be URL-safe and work as a filesystem path, only lowercase, numbers, underscore, minus characters allowed.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035d7350)}}\n", |
|
|
1727 |
"adding route GET /v1/schema/{className} \"schema.objects.get\"\n", |
|
|
1728 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.get.meta\"}}}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Get a single class from the schema\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0033af920)}}\n", |
|
|
1729 |
"adding route GET /v1/schema/cluster-status \"schema.cluster.status\"\n", |
|
|
1730 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.cluster.status\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc003587080)}}\n", |
|
|
1731 |
"adding route GET /v1/objects \"objects.list\"\n", |
|
|
1732 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query\"}}}, OperationProps:spec.OperationProps{Description:\"Lists all Objects in reverse order of creation, owned by the user that belongs to the used token.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Get a list of Objects.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.list\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The starting ID of the result window.\", Name:\"after\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"integer\", Nullable:false, Format:\"int64\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:0, Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The starting index of the result window. Default value is 0.\", Name:\"offset\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"integer\", Nullable:false, Format:\"int64\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The maximum number of items to be returned per page. Default value is set in Weaviate config.\", Name:\"limit\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Include additional information, such as classification infos. Allowed values include: classification, vector, interpretation\", Name:\"include\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Sort parameter to pass an information about the names of the sort fields\", Name:\"sort\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Order parameter to tell how to order (asc or desc) data within given field\", Name:\"order\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Class parameter specifies the class from which to query objects\", Name:\"class\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034e8ea0)}}\n", |
|
|
1733 |
"adding route GET /v1/schema/{className}/shards \"schema.objects.shards.get\"\n", |
|
|
1734 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.get.meta\"}}}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Get the shards status of an Object class\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.shards.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034e9c68)}}\n", |
|
|
1735 |
"adding route GET /v1 \"weaviate.root\"\n", |
|
|
1736 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"Home. Discover the REST API\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string(nil), Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"weaviate.root\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc0034075a8)}}\n", |
|
|
1737 |
"adding route GET /v1/schema \"schema.dump\"\n", |
|
|
1738 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.query.meta\"}}}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Dump the current the database schema.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.dump\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc0033aea50)}}\n", |
|
|
1739 |
"adding route GET /v1/nodes \"nodes.get\"\n", |
|
|
1740 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.nodes.status.get\"}}}, OperationProps:spec.OperationProps{Description:\"Returns status of Weaviate DB.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"nodes\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"nodes.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:\"minimal\", Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Controls the verbosity of the output, possible values are: \\\"minimal\\\", \\\"verbose\\\". Defaults to \\\"minimal\\\".\", Name:\"output\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003233818)}}\n", |
|
|
1741 |
"adding route GET /v1/backups/{backend}/{id} \"backups.create.status\"\n", |
|
|
1742 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.backup\"}}}, OperationProps:spec.OperationProps{Description:\"Returns status of backup creation attempt for a set of classes\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"backups\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"backups.create.status\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Backup backend name e.g. filesystem, gcs, s3.\", Name:\"backend\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The ID of a backup. Must be URL-safe and work as a filesystem path, only lowercase, numbers, underscore, minus characters allowed.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003312c18)}}\n", |
|
|
1743 |
"adding route GET /v1/schema/{className}/tenants \"tenants.get\"\n", |
|
|
1744 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"get all tenants from a specific class\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"tenants.get\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003587b48)}}\n", |
|
|
1745 |
"adding route GET /v1/.well-known/openid-configuration \"\"\n", |
|
|
1746 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false}}, OperationProps:spec.OperationProps{Description:\"OIDC Discovery page, redirects to the token issuer if one is configured\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"well-known\", \"oidc\", \"discovery\"}, Summary:\"OIDC discovery information if OIDC auth is enabled\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc0034a1c68)}}\n", |
|
|
1747 |
"adding route GET /v1/.well-known/ready \"weaviate.wellknown.readiness\"\n", |
|
|
1748 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"Determines whether the application is ready to receive traffic. Can be used for kubernetes readiness probe.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string(nil), Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"weaviate.wellknown.readiness\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc003233ce0)}}\n", |
|
|
1749 |
"adding route GET /v1/.well-known/live \"weaviate.wellknown.liveness\"\n", |
|
|
1750 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"Determines whether the application is alive. Can be used for kubernetes liveness probe\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string(nil), Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"weaviate.wellknown.liveness\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter(nil), Responses:(*spec.Responses)(0xc003538090)}}\n", |
|
|
1751 |
"adding route PUT /v1/schema/{className}/shards/{shardName} \"schema.objects.shards.update\"\n", |
|
|
1752 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate.meta\"}}}, OperationProps:spec.OperationProps{Description:\"Update shard status of an Object Class\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.shards.update\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"shardName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc00341f440), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034070e0)}}\n", |
|
|
1753 |
"adding route PUT /v1/objects/{id}/references/{propertyName} \"objects.references.update\"\n", |
|
|
1754 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Replace all references to a class-property.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Replace all references to a class-property.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.references.update\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique name of the property related to the Object.\", Name:\"propertyName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0034a3440), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034a08a0)}}\n", |
|
|
1755 |
"adding route PUT /v1/schema/{className} \"schema.objects.update\"\n", |
|
|
1756 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate.meta\"}}}, OperationProps:spec.OperationProps{Description:\"Use this endpoint to alter an existing class in the schema. Note that not all settings are mutable. If an error about immutable fields is returned and you still need to update this particular setting, you will have to delete the class (and the underlying data) and recreate. This endpoint cannot be used to modify properties. Instead use POST /v1/schema/{className}/properties. A typical use case for this endpoint is to update configuration, such as the vectorIndexConfig. Note that even in mutable sections, such as vectorIndexConfig, some fields may be immutable.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Update settings of an existing schema class\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.update\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"objectClass\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0033e7440), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0033afe60)}}\n", |
|
|
1757 |
"adding route PUT /v1/objects/{className}/{id}/references/{propertyName} \"objects.class.references.put\"\n", |
|
|
1758 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Update all references of a property of a data object.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Replace all references to a class-property.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.references.put\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The class name as defined in the schema\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique name of the property related to the Object.\", Name:\"propertyName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003380480), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003366f18)}}\n", |
|
|
1759 |
"adding route PUT /v1/objects/{className}/{id} \"objects.class.put\"\n", |
|
|
1760 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Update an individual data object based on its class and uuid.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Update a class object based on its uuid\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.put\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The uuid of the data object to update.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc00355e900), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035392a8)}}\n", |
|
|
1761 |
"adding route PUT /v1/schema/{className}/tenants \"tenants.update\"\n", |
|
|
1762 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"Update tenant of a specific class\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"tenants.update\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0035b3d40), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035d6108)}}\n", |
|
|
1763 |
"adding route PUT /v1/objects/{id} \"objects.update\"\n", |
|
|
1764 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Updates an Object's data. Given meta-data and schema values are validated. LastUpdateTime is set to the time this function is called.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Update an Object based on its UUID.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.update\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003474240), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc00345cb40)}}\n", |
|
|
1765 |
"adding route POST /v1/graphql/batch \"graphql.batch\"\n", |
|
|
1766 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query\", \"weaviate.local.query.meta\", \"weaviate.network.query\", \"weaviate.network.query.meta\"}}}, OperationProps:spec.OperationProps{Description:\"Perform a batched GraphQL query\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"graphql\"}, Summary:\"Get a response based on GraphQL.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"graphql.batch\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The GraphQL queries.\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0035a2d80), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003587410)}}\n", |
|
|
1767 |
"adding route POST /v1/batch/objects \"batch.objects.create\"\n", |
|
|
1768 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.add\"}}}, OperationProps:spec.OperationProps{Description:\"Register new Objects in bulk. Provided meta-data and schema values are validated.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"batch\", \"objects\"}, Summary:\"Creates new Objects based on a Object template as a batch.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"batch.objects.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003350240), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003313b18)}}\n", |
|
|
1769 |
"adding route POST /v1/batch/references \"batch.references.create\"\n", |
|
|
1770 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.add\"}}}, OperationProps:spec.OperationProps{Description:\"Register cross-references between any class items (objects or objects) in bulk.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"batch\", \"references\"}, Summary:\"Creates new Cross-References between arbitrary classes in bulk.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"batch.references.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"A list of references to be batched. The ideal size depends on the used database connector. Please see the documentation of the used connector for help\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc00361a6c0), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003624150)}}\n", |
|
|
1771 |
"adding route POST /v1/schema \"schema.objects.create\"\n", |
|
|
1772 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.add.meta\"}}}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Create a new Object class in the schema.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"objectClass\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0033ce240), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0033aee40)}}\n", |
|
|
1773 |
"adding route POST /v1/classifications \"classifications.post\"\n", |
|
|
1774 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.classifications.post\"}}}, OperationProps:spec.OperationProps{Description:\"Trigger a classification based on the specified params. Classifications will run in the background, use GET /classifications/<id> to retrieve the status of your classification.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"classifications\"}, Summary:\"Starts a classification.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"classifications.post\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"parameters to start a classification\", Name:\"params\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc00362cd80), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003624828)}}\n", |
|
|
1775 |
"adding route POST /v1/objects/{className}/{id}/references/{propertyName} \"objects.class.references.create\"\n", |
|
|
1776 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Add a single reference to a class-property.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Add a single reference to a class-property.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.class.references.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The class name as defined in the schema\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique name of the property related to the Object.\", Name:\"propertyName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003381d40), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003367968)}}\n", |
|
|
1777 |
"adding route POST /v1/schema/{className}/tenants \"tenants.create\"\n", |
|
|
1778 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, OperationProps:spec.OperationProps{Description:\"Create a new tenant for a specific class\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"tenants.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0035d9d40), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035d66c0)}}\n", |
|
|
1779 |
"adding route POST /v1/objects \"objects.create\"\n", |
|
|
1780 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.add\"}}}, OperationProps:spec.OperationProps{Description:\"Registers a new Object. Provided meta-data and schema values are validated.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Create Objects between two Objects (object and subject).\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003512900), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Determines how many replicas must acknowledge a request before it is considered successful\", Name:\"consistency_level\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034e9578)}}\n", |
|
|
1781 |
"adding route POST /v1/objects/validate \"objects.validate\"\n", |
|
|
1782 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query.meta\"}}}, OperationProps:spec.OperationProps{Description:\"Validate an Object's schema and meta-data. It has to be based on a schema, which is related to the given Object to be accepted by this validation.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Validate an Object based on a schema.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.validate\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003338480), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003313248)}}\n", |
|
|
1783 |
"adding route POST /v1/graphql \"graphql.post\"\n", |
|
|
1784 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.query\", \"weaviate.local.query.meta\", \"weaviate.network.query\", \"weaviate.network.query.meta\"}}}, OperationProps:spec.OperationProps{Description:\"Get an object based on GraphQL\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"graphql\"}, Summary:\"Get a response based on GraphQL\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"graphql.post\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The GraphQL query request parameters.\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc00330efc0), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc003312540)}}\n", |
|
|
1785 |
"adding route POST /v1/backups/{backend}/{id}/restore \"backups.restore\"\n", |
|
|
1786 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.backup\"}}}, OperationProps:spec.OperationProps{Description:\"Starts a process of restoring a backup for a set of classes\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"backups\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"backups.restore\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Backup backend name e.g. filesystem, gcs, s3.\", Name:\"backend\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"The ID of a backup. Must be URL-safe and work as a filesystem path, only lowercase, numbers, underscore, minus characters allowed.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0036086c0), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0035d79f8)}}\n", |
|
|
1787 |
"adding route POST /v1/objects/{id}/references/{propertyName} \"objects.references.create\"\n", |
|
|
1788 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-available-in-mqtt\":false, \"x-available-in-websocket\":false, \"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate\"}}}, OperationProps:spec.OperationProps{Description:\"Add a single reference to a class-property.\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"objects\"}, Summary:\"Add a single reference to a class-property.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"objects.references.create\", Deprecated:true, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"uuid\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique ID of the Object.\", Name:\"id\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Unique name of the property related to the Object.\", Name:\"propertyName\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0034b8900), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Specifies the tenant in a request targeting a multi-tenant class\", Name:\"tenant\", In:\"query\", Required:false, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034a1050)}}\n", |
|
|
1789 |
"adding route POST /v1/schema/{className}/properties \"schema.objects.properties.add\"\n", |
|
|
1790 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.manipulate.meta\"}}}, OperationProps:spec.OperationProps{Description:\"\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"schema\"}, Summary:\"Add a property to an Object class.\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"schema.objects.properties.add\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"className\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc003405d40), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034069d8)}}\n", |
|
|
1791 |
"adding route POST /v1/backups/{backend} \"backups.create\"\n", |
|
|
1792 |
"operation: spec.Operation{VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions{\"x-serviceIds\":[]interface {}{\"weaviate.local.backup\"}}}, OperationProps:spec.OperationProps{Description:\"Starts a process of creating a backup for a set of classes\", Consumes:[]string(nil), Produces:[]string(nil), Schemes:[]string(nil), Tags:[]string{\"backups\"}, Summary:\"\", ExternalDocs:(*spec.ExternalDocumentation)(nil), ID:\"backups.create\", Deprecated:false, Security:[]map[string][]string(nil), Parameters:[]spec.Parameter{spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"string\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"Backup backend name e.g. filesystem, gcs, s3.\", Name:\"backend\", In:\"path\", Required:true, Schema:(*spec.Schema)(nil), AllowEmptyValue:false}}, spec.Parameter{Refable:spec.Refable{Ref:spec.Ref{Ref:jsonreference.Ref{referenceURL:(*url.URL)(nil), referencePointer:jsonpointer.Pointer{referenceTokens:[]string(nil)}, HasFullURL:false, HasURLPathOnly:false, HasFragmentOnly:false, HasFileScheme:false, HasFullFilePath:false}}}, CommonValidations:spec.CommonValidations{Maximum:(*float64)(nil), ExclusiveMaximum:false, Minimum:(*float64)(nil), ExclusiveMinimum:false, MaxLength:(*int64)(nil), MinLength:(*int64)(nil), Pattern:\"\", MaxItems:(*int64)(nil), MinItems:(*int64)(nil), UniqueItems:false, MultipleOf:(*float64)(nil), Enum:[]interface {}(nil)}, SimpleSchema:spec.SimpleSchema{Type:\"\", Nullable:false, Format:\"\", Items:(*spec.Items)(nil), CollectionFormat:\"\", Default:interface {}(nil), Example:interface {}(nil)}, VendorExtensible:spec.VendorExtensible{Extensions:spec.Extensions(nil)}, ParamProps:spec.ParamProps{Description:\"\", Name:\"body\", In:\"body\", Required:true, Schema:(*spec.Schema)(0xc0034e0fc0), AllowEmptyValue:false}}}, Responses:(*spec.Responses)(0xc0034e82a0)}}\n", |
|
|
1793 |
"{\"action\":\"restapi_management\",\"level\":\"info\",\"msg\":\"Serving weaviate at http://127.0.0.1:8079\",\"time\":\"2024-02-26T12:27:58+01:00\"}\n" |
|
|
1794 |
] |
|
|
1795 |
}, |
|
|
1796 |
{ |
|
|
1797 |
"name": "stdout", |
|
|
1798 |
"output_type": "stream", |
|
|
1799 |
"text": [ |
|
|
1800 |
"Started /home/mabdallah/.cache/weaviate-embedded: process ID 751358\n" |
|
|
1801 |
] |
|
|
1802 |
}, |
|
|
1803 |
{ |
|
|
1804 |
"name": "stderr", |
|
|
1805 |
"output_type": "stream", |
|
|
1806 |
"text": [ |
|
|
1807 |
"looking up route for GET /v1/.well-known/openid-configuration\n", |
|
|
1808 |
"got a router for POST\n", |
|
|
1809 |
"got a router for DELETE\n", |
|
|
1810 |
"got a router for HEAD\n", |
|
|
1811 |
"got a router for PATCH\n", |
|
|
1812 |
"got a router for GET\n", |
|
|
1813 |
"got a router for PUT\n", |
|
|
1814 |
"found a route for GET /v1/.well-known/openid-configuration with 0 parameters\n", |
|
|
1815 |
"responding to GET /v1/.well-known/openid-configuration with produces: [application/json]\n", |
|
|
1816 |
"offers: [application/json]\n", |
|
|
1817 |
"[GET /v1/.well-known/openid-configuration] set response format \"application/json\" in context\n", |
|
|
1818 |
"[GET /v1/.well-known/openid-configuration] negotiated response format \"application/json\"\n", |
|
|
1819 |
"looking up route for GET /v1/meta\n", |
|
|
1820 |
"got a router for DELETE\n", |
|
|
1821 |
"got a router for HEAD\n", |
|
|
1822 |
"got a router for PATCH\n", |
|
|
1823 |
"got a router for GET\n", |
|
|
1824 |
"got a router for PUT\n", |
|
|
1825 |
"got a router for POST\n", |
|
|
1826 |
"found a route for GET /v1/meta with 0 parameters\n", |
|
|
1827 |
"responding to GET /v1/meta with produces: [application/json]\n", |
|
|
1828 |
"offers: [application/json]\n", |
|
|
1829 |
"[GET /v1/meta] set response format \"application/json\" in context\n", |
|
|
1830 |
"[GET /v1/meta] negotiated response format \"application/json\"\n", |
|
|
1831 |
"{\"action\":\"read_disk_use\",\"level\":\"warning\",\"msg\":\"disk usage currently at 89.66%, threshold set to 80.00%\",\"path\":\"/home/mabdallah/.local/share/weaviate\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1832 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_2c8401e9c6f14e21b6c3d7434d43dd83_IfwQ3WzZJ3VR in 3.062295ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1833 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":3000,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:27:59+01:00\",\"took\":280849}\n", |
|
|
1834 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_d816eca50eae4da8bb72d45e5fd28b69_ULV3qcctsosG in 3.321ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1835 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":3000,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:27:59+01:00\",\"took\":302181}\n", |
|
|
1836 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_e297594ea3d24ffa80913066c127d83f_t4t5sjihkjSp in 4.161825ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1837 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":3000,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:27:59+01:00\",\"took\":289256}\n", |
|
|
1838 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_f9d8843e155941b39f0628ff41750614_WhlQtIneVTqi in 5.995692ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1839 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_7e6007304500412982898afbd63b941d_ycDa7PHJ04ab in 7.711332ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1840 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":3000,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:27:59+01:00\",\"took\":5051995}\n", |
|
|
1841 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":3000,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:27:59+01:00\",\"took\":3250183}\n", |
|
|
1842 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_fdf078be6dcd451886cfab7b35c46781_ZQbwZQP6evkL in 68.455232ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1843 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_b68820591eb3431b9fc2b57b52d1beee_xomHdqd0BPy0 in 155.129469ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1844 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_89ff9ce25c284bac88ecb95c79c1c47f_iuoz4ZVw5HQV in 188.898533ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1845 |
"{\"level\":\"info\",\"msg\":\"Completed loading shard langchain_21bff2a0d3b848ae8fb1c3620b7ac98e_3Ulvr6pHW3dB in 219.901007ms\",\"time\":\"2024-02-26T12:27:59+01:00\"}\n", |
|
|
1846 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":19577,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:28:00+01:00\",\"took\":268946997}\n", |
|
|
1847 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":36328,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:28:00+01:00\",\"took\":518055622}\n", |
|
|
1848 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":44910,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:28:00+01:00\",\"took\":616803920}\n", |
|
|
1849 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":44910,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:28:00+01:00\",\"took\":600350383}\n", |
|
|
1850 |
"looking up route for GET /v1/schema/LangChain_c8821979f9a241bc9bf7629bf1e97c8d\n", |
|
|
1851 |
"got a router for POST\n", |
|
|
1852 |
"got a router for DELETE\n", |
|
|
1853 |
"got a router for HEAD\n", |
|
|
1854 |
"got a router for PATCH\n", |
|
|
1855 |
"got a router for GET\n", |
|
|
1856 |
"got a router for PUT\n", |
|
|
1857 |
"found a route for GET /v1/schema/LangChain_c8821979f9a241bc9bf7629bf1e97c8d with 1 parameters\n", |
|
|
1858 |
"responding to GET /v1/schema/LangChain_c8821979f9a241bc9bf7629bf1e97c8d with produces: [application/json]\n", |
|
|
1859 |
"offers: [application/json]\n", |
|
|
1860 |
"[GET /v1/schema/LangChain_c8821979f9a241bc9bf7629bf1e97c8d] set response format \"application/json\" in context\n", |
|
|
1861 |
"[GET /v1/schema/LangChain_c8821979f9a241bc9bf7629bf1e97c8d] negotiated response format \"application/json\"\n", |
|
|
1862 |
"looking up route for POST /v1/schema\n", |
|
|
1863 |
"got a router for POST\n", |
|
|
1864 |
"got a router for DELETE\n", |
|
|
1865 |
"got a router for HEAD\n", |
|
|
1866 |
"got a router for PATCH\n", |
|
|
1867 |
"got a router for GET\n", |
|
|
1868 |
"got a router for PUT\n", |
|
|
1869 |
"found a route for POST /v1/schema with 1 parameters\n", |
|
|
1870 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1871 |
"{\"level\":\"info\",\"msg\":\"Created shard langchain_c8821979f9a241bc9bf7629bf1e97c8d_mDvlzkoexpKS in 1.603191ms\",\"time\":\"2024-02-26T12:28:02+01:00\"}\n", |
|
|
1872 |
"responding to POST /v1/schema with produces: [application/json]\n", |
|
|
1873 |
"offers: [application/json]\n", |
|
|
1874 |
"[POST /v1/schema] set response format \"application/json\" in context\n", |
|
|
1875 |
"[POST /v1/schema] negotiated response format \"application/json\"\n", |
|
|
1876 |
"{\"action\":\"hnsw_vector_cache_prefill\",\"count\":1000,\"index_id\":\"main\",\"level\":\"info\",\"limit\":1000000000000,\"msg\":\"prefilled vector cache\",\"time\":\"2024-02-26T12:28:02+01:00\",\"took\":91364}\n", |
|
|
1877 |
"{\"action\":\"read_disk_use\",\"level\":\"warning\",\"msg\":\"disk usage currently at 89.66%, threshold set to 80.00%\",\"path\":\"/home/mabdallah/.local/share/weaviate\",\"time\":\"2024-02-26T12:28:29+01:00\"}\n", |
|
|
1878 |
"{\"action\":\"read_disk_use\",\"level\":\"warning\",\"msg\":\"disk usage currently at 89.66%, threshold set to 80.00%\",\"path\":\"/home/mabdallah/.local/share/weaviate\",\"time\":\"2024-02-26T12:30:30+01:00\"}\n", |
|
|
1879 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1880 |
"got a router for POST\n", |
|
|
1881 |
"got a router for DELETE\n", |
|
|
1882 |
"got a router for HEAD\n", |
|
|
1883 |
"got a router for PATCH\n", |
|
|
1884 |
"got a router for GET\n", |
|
|
1885 |
"got a router for PUT\n", |
|
|
1886 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1887 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1888 |
"looking up route for GET /v1/nodes\n", |
|
|
1889 |
"got a router for POST\n", |
|
|
1890 |
"got a router for DELETE\n", |
|
|
1891 |
"got a router for HEAD\n", |
|
|
1892 |
"got a router for PATCH\n", |
|
|
1893 |
"got a router for GET\n", |
|
|
1894 |
"got a router for PUT\n", |
|
|
1895 |
"found a route for GET /v1/nodes with 1 parameters\n", |
|
|
1896 |
"responding to GET /v1/nodes with produces: [application/json]\n", |
|
|
1897 |
"offers: [application/json]\n", |
|
|
1898 |
"[GET /v1/nodes] set response format \"application/json\" in context\n", |
|
|
1899 |
"[GET /v1/nodes] negotiated response format \"application/json\"\n", |
|
|
1900 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1901 |
"offers: [application/json]\n", |
|
|
1902 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1903 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1904 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1905 |
"got a router for POST\n", |
|
|
1906 |
"got a router for DELETE\n", |
|
|
1907 |
"got a router for HEAD\n", |
|
|
1908 |
"got a router for PATCH\n", |
|
|
1909 |
"got a router for GET\n", |
|
|
1910 |
"got a router for PUT\n", |
|
|
1911 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1912 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1913 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1914 |
"offers: [application/json]\n", |
|
|
1915 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1916 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1917 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1918 |
"got a router for GET\n", |
|
|
1919 |
"got a router for PUT\n", |
|
|
1920 |
"got a router for POST\n", |
|
|
1921 |
"got a router for DELETE\n", |
|
|
1922 |
"got a router for HEAD\n", |
|
|
1923 |
"got a router for PATCH\n", |
|
|
1924 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1925 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1926 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1927 |
"offers: [application/json]\n", |
|
|
1928 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1929 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1930 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1931 |
"got a router for DELETE\n", |
|
|
1932 |
"got a router for HEAD\n", |
|
|
1933 |
"got a router for PATCH\n", |
|
|
1934 |
"got a router for GET\n", |
|
|
1935 |
"got a router for PUT\n", |
|
|
1936 |
"got a router for POST\n", |
|
|
1937 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1938 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1939 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1940 |
"offers: [application/json]\n", |
|
|
1941 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1942 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1943 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1944 |
"got a router for GET\n", |
|
|
1945 |
"got a router for PUT\n", |
|
|
1946 |
"got a router for POST\n", |
|
|
1947 |
"got a router for DELETE\n", |
|
|
1948 |
"got a router for HEAD\n", |
|
|
1949 |
"got a router for PATCH\n", |
|
|
1950 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1951 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1952 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1953 |
"offers: [application/json]\n", |
|
|
1954 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1955 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1956 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1957 |
"got a router for GET\n", |
|
|
1958 |
"got a router for PUT\n", |
|
|
1959 |
"got a router for POST\n", |
|
|
1960 |
"got a router for DELETE\n", |
|
|
1961 |
"got a router for HEAD\n", |
|
|
1962 |
"got a router for PATCH\n", |
|
|
1963 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1964 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1965 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1966 |
"offers: [application/json]\n", |
|
|
1967 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1968 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1969 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1970 |
"got a router for PUT\n", |
|
|
1971 |
"got a router for POST\n", |
|
|
1972 |
"got a router for DELETE\n", |
|
|
1973 |
"got a router for HEAD\n", |
|
|
1974 |
"got a router for PATCH\n", |
|
|
1975 |
"got a router for GET\n", |
|
|
1976 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1977 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1978 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1979 |
"offers: [application/json]\n", |
|
|
1980 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1981 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1982 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1983 |
"got a router for DELETE\n", |
|
|
1984 |
"got a router for HEAD\n", |
|
|
1985 |
"got a router for PATCH\n", |
|
|
1986 |
"got a router for GET\n", |
|
|
1987 |
"got a router for PUT\n", |
|
|
1988 |
"got a router for POST\n", |
|
|
1989 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
1990 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
1991 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
1992 |
"offers: [application/json]\n", |
|
|
1993 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
1994 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
1995 |
"looking up route for POST /v1/batch/objects\n", |
|
|
1996 |
"got a router for POST\n", |
|
|
1997 |
"got a router for DELETE\n", |
|
|
1998 |
"got a router for HEAD\n", |
|
|
1999 |
"got a router for PATCH\n", |
|
|
2000 |
"got a router for GET\n", |
|
|
2001 |
"got a router for PUT\n", |
|
|
2002 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
2003 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
2004 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
2005 |
"offers: [application/json]\n", |
|
|
2006 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
2007 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
2008 |
"looking up route for POST /v1/batch/objects\n", |
|
|
2009 |
"got a router for HEAD\n", |
|
|
2010 |
"got a router for PATCH\n", |
|
|
2011 |
"got a router for GET\n", |
|
|
2012 |
"got a router for PUT\n", |
|
|
2013 |
"got a router for POST\n", |
|
|
2014 |
"got a router for DELETE\n", |
|
|
2015 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
2016 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
2017 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
2018 |
"offers: [application/json]\n", |
|
|
2019 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
2020 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n", |
|
|
2021 |
"looking up route for POST /v1/batch/objects\n", |
|
|
2022 |
"got a router for HEAD\n", |
|
|
2023 |
"got a router for PATCH\n", |
|
|
2024 |
"got a router for GET\n", |
|
|
2025 |
"got a router for PUT\n", |
|
|
2026 |
"got a router for POST\n", |
|
|
2027 |
"got a router for DELETE\n", |
|
|
2028 |
"found a route for POST /v1/batch/objects with 2 parameters\n", |
|
|
2029 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
2030 |
"responding to POST /v1/batch/objects with produces: [application/json]\n", |
|
|
2031 |
"offers: [application/json]\n", |
|
|
2032 |
"[POST /v1/batch/objects] set response format \"application/json\" in context\n", |
|
|
2033 |
"[POST /v1/batch/objects] negotiated response format \"application/json\"\n" |
|
|
2034 |
] |
|
|
2035 |
} |
|
|
2036 |
], |
|
|
2037 |
"source": [ |
|
|
2038 |
"from langchain_community.embeddings import HuggingFaceEmbeddings\n", |
|
|
2039 |
"from langchain.vectorstores import Weaviate\n", |
|
|
2040 |
"import weaviate\n", |
|
|
2041 |
"from weaviate.embedded import EmbeddedOptions\n", |
|
|
2042 |
"\n", |
|
|
2043 |
"client = weaviate.Client(\n", |
|
|
2044 |
" embedded_options = EmbeddedOptions()\n", |
|
|
2045 |
")\n", |
|
|
2046 |
"\n", |
|
|
2047 |
"vectorstore = Weaviate.from_documents(\n", |
|
|
2048 |
" client = client, \n", |
|
|
2049 |
" documents = chunks,\n", |
|
|
2050 |
" embedding = HuggingFaceEmbeddings(),\n", |
|
|
2051 |
" by_text = False\n", |
|
|
2052 |
")" |
|
|
2053 |
] |
|
|
2054 |
}, |
|
|
2055 |
{ |
|
|
2056 |
"cell_type": "code", |
|
|
2057 |
"execution_count": 7, |
|
|
2058 |
"metadata": {}, |
|
|
2059 |
"outputs": [], |
|
|
2060 |
"source": [ |
|
|
2061 |
"retriever = vectorstore.as_retriever()" |
|
|
2062 |
] |
|
|
2063 |
}, |
|
|
2064 |
{ |
|
|
2065 |
"cell_type": "code", |
|
|
2066 |
"execution_count": 25, |
|
|
2067 |
"metadata": {}, |
|
|
2068 |
"outputs": [ |
|
|
2069 |
{ |
|
|
2070 |
"name": "stdout", |
|
|
2071 |
"output_type": "stream", |
|
|
2072 |
"text": [ |
|
|
2073 |
"input_variables=['context', 'question'] messages=[HumanMessagePromptTemplate(prompt=PromptTemplate(input_variables=['context', 'question'], template='You are an oncologist assistant for generating synthetic cancer patient profiles. \\nUse the following pieces of retrieved contexts to generate a single clinically plausible synthetic colorectal cancer patient profile. \\nThe synthetic patient profile should the following :\\n- Age \\n- Sex \\n- History of Present condition\\n- Past Medical History\\n- Symptoms \\n- Allergies \\n- Past and Present Medications\\n- Treatment \\n- Treatment Outcomes\\n- Family History \\nIf some information are not available, you can generate the missing data.\\nQuestion: {question} \\nContext: {context} \\nAnswer:\\n'))]\n" |
|
|
2074 |
] |
|
|
2075 |
} |
|
|
2076 |
], |
|
|
2077 |
"source": [ |
|
|
2078 |
"from langchain.prompts import ChatPromptTemplate\n", |
|
|
2079 |
"\n", |
|
|
2080 |
"template = \"\"\"You are an oncologist assistant for generating synthetic cancer patient profiles. \n", |
|
|
2081 |
"Use the following pieces of retrieved contexts to generate a single clinically plausible synthetic colorectal cancer patient profile. \n", |
|
|
2082 |
"The synthetic patient profile should the following :\n", |
|
|
2083 |
"- Age \n", |
|
|
2084 |
"- Sex \n", |
|
|
2085 |
"- History of Present condition\n", |
|
|
2086 |
"- Past Medical History\n", |
|
|
2087 |
"- Symptoms \n", |
|
|
2088 |
"- Allergies \n", |
|
|
2089 |
"- Past and Present Medications\n", |
|
|
2090 |
"- Treatment \n", |
|
|
2091 |
"- Treatment Outcomes\n", |
|
|
2092 |
"- Family History \n", |
|
|
2093 |
"If some information are not available, you can generate the missing data.\n", |
|
|
2094 |
"Question: {question} \n", |
|
|
2095 |
"Context: {context} \n", |
|
|
2096 |
"Answer:\n", |
|
|
2097 |
"\"\"\"\n", |
|
|
2098 |
"prompt = ChatPromptTemplate.from_template(template)\n", |
|
|
2099 |
"\n", |
|
|
2100 |
"print(prompt)" |
|
|
2101 |
] |
|
|
2102 |
}, |
|
|
2103 |
{ |
|
|
2104 |
"cell_type": "code", |
|
|
2105 |
"execution_count": 11, |
|
|
2106 |
"metadata": {}, |
|
|
2107 |
"outputs": [], |
|
|
2108 |
"source": [ |
|
|
2109 |
"from getpass import getpass\n", |
|
|
2110 |
"import os\n", |
|
|
2111 |
"\n", |
|
|
2112 |
"HUGGINGFACEHUB_API_TOKEN = getpass()\n", |
|
|
2113 |
"\n", |
|
|
2114 |
"os.environ[\"HUGGINGFACEHUB_API_TOKEN\"] = HUGGINGFACEHUB_API_TOKEN" |
|
|
2115 |
] |
|
|
2116 |
}, |
|
|
2117 |
{ |
|
|
2118 |
"cell_type": "code", |
|
|
2119 |
"execution_count": 28, |
|
|
2120 |
"metadata": {}, |
|
|
2121 |
"outputs": [ |
|
|
2122 |
{ |
|
|
2123 |
"name": "stderr", |
|
|
2124 |
"output_type": "stream", |
|
|
2125 |
"text": [ |
|
|
2126 |
"WARNING! token is not default parameter.\n", |
|
|
2127 |
" token was transferred to model_kwargs.\n", |
|
|
2128 |
" Please make sure that token is what you intended.\n", |
|
|
2129 |
"looking up route for POST /v1/graphql\n", |
|
|
2130 |
"got a router for GET\n", |
|
|
2131 |
"got a router for PUT\n", |
|
|
2132 |
"got a router for POST\n", |
|
|
2133 |
"got a router for DELETE\n", |
|
|
2134 |
"got a router for HEAD\n", |
|
|
2135 |
"got a router for PATCH\n", |
|
|
2136 |
"found a route for POST /v1/graphql with 1 parameters\n", |
|
|
2137 |
"validating content type for \"application/json\" against [application/json, application/yaml]\n", |
|
|
2138 |
"responding to POST /v1/graphql with produces: [application/json]\n", |
|
|
2139 |
"offers: [application/json]\n", |
|
|
2140 |
"[POST /v1/graphql] set response format \"application/json\" in context\n", |
|
|
2141 |
"[POST /v1/graphql] negotiated response format \"application/json\"\n" |
|
|
2142 |
] |
|
|
2143 |
}, |
|
|
2144 |
{ |
|
|
2145 |
"name": "stdout", |
|
|
2146 |
"output_type": "stream", |
|
|
2147 |
"text": [ |
|
|
2148 |
"Token will not been saved to git credential helper. Pass `add_to_git_credential=True` if you want to set the git credential as well.\n", |
|
|
2149 |
"Token is valid (permission: write).\n", |
|
|
2150 |
"Your token has been saved to /home/mabdallah/.cache/huggingface/token\n", |
|
|
2151 |
"Login successful\n" |
|
|
2152 |
] |
|
|
2153 |
} |
|
|
2154 |
], |
|
|
2155 |
"source": [ |
|
|
2156 |
"from langchain.chat_models import ChatOpenAI\n", |
|
|
2157 |
"from langchain.llms import VertexAI\n", |
|
|
2158 |
"from langchain import PromptTemplate, LLMChain\n", |
|
|
2159 |
"from langchain.schema.runnable import RunnablePassthrough\n", |
|
|
2160 |
"from langchain.schema.output_parser import StrOutputParser\n", |
|
|
2161 |
"from langchain_community.llms import HuggingFaceEndpoint\n", |
|
|
2162 |
"import os\n", |
|
|
2163 |
"\n", |
|
|
2164 |
"\n", |
|
|
2165 |
"repo_id = \"mistralai/Mistral-7B-Instruct-v0.2\"\n", |
|
|
2166 |
"\n", |
|
|
2167 |
"llm = HuggingFaceEndpoint(\n", |
|
|
2168 |
" repo_id=repo_id, temperature=0.5, token=HUGGINGFACEHUB_API_TOKEN\n", |
|
|
2169 |
")\n", |
|
|
2170 |
"rag_chain = (\n", |
|
|
2171 |
" {\"context\": retriever, \"question\": RunnablePassthrough()} \n", |
|
|
2172 |
" | prompt \n", |
|
|
2173 |
" | llm\n", |
|
|
2174 |
" | StrOutputParser() \n", |
|
|
2175 |
")\n", |
|
|
2176 |
"\n", |
|
|
2177 |
"query = \"Generate a synthetic patient profile for a female colorectal cancer patient whose age is 45 years old\"\n", |
|
|
2178 |
"response = rag_chain.invoke(query)" |
|
|
2179 |
] |
|
|
2180 |
}, |
|
|
2181 |
{ |
|
|
2182 |
"cell_type": "code", |
|
|
2183 |
"execution_count": 29, |
|
|
2184 |
"metadata": {}, |
|
|
2185 |
"outputs": [ |
|
|
2186 |
{ |
|
|
2187 |
"name": "stdout", |
|
|
2188 |
"output_type": "stream", |
|
|
2189 |
"text": [ |
|
|
2190 |
"Age: 45 years old\n", |
|
|
2191 |
"Sex: Female\n", |
|
|
2192 |
"History of Present Condition: Not available in the context\n", |
|
|
2193 |
"Past Medical History: depression, open appendectomy in __, open gallbladder in __, hysterectomy in __, diabetes mellitus, hypertension, hyperlipidemia, arthritis, shoulder pain, tendonitis, colon cancer (unknown stage and treatment), SLE\n", |
|
|
2194 |
"Symptoms: Not available in the context\n", |
|
|
2195 |
"Allergies: Not available in the context\n", |
|
|
2196 |
"Past and Present Medications: Not available in the context\n", |
|
|
2197 |
"Treatment: Colonic resection, chemotherapy (unknown type)\n", |
|
|
2198 |
"Treatment Outcomes: Not available in the context\n", |
|
|
2199 |
"Family History: Family history is notable for colon cancer in her mother, no inflammatory bowel disease and no other cancers. Maternal aunt had breast cancer at an unknown age. Father died of colon cancer in an unknown age and is believed to have had multiple polyps prior to his death. Sister has hypertension, GERD, and gets colonoscopies every 3-5 years due to a history of polyps. No children. No other family history of cancer.\n" |
|
|
2200 |
] |
|
|
2201 |
}, |
|
|
2202 |
{ |
|
|
2203 |
"name": "stderr", |
|
|
2204 |
"output_type": "stream", |
|
|
2205 |
"text": [ |
|
|
2206 |
"{\"action\":\"read_disk_use\",\"level\":\"warning\",\"msg\":\"disk usage currently at 89.66%, threshold set to 80.00%\",\"path\":\"/home/mabdallah/.local/share/weaviate\",\"time\":\"2024-02-26T12:40:30+01:00\"}\n", |
|
|
2207 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_21bff2a0d3b848ae8fb1c3620b7ac98e\",\"index\":\"langchain_21bff2a0d3b848ae8fb1c3620b7ac98e\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_21bff2a0d3b848ae8fb1c3620b7ac98e/3Ulvr6pHW3dB/lsm\",\"shard\":\"3Ulvr6pHW3dB\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2208 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_b68820591eb3431b9fc2b57b52d1beee\",\"index\":\"langchain_b68820591eb3431b9fc2b57b52d1beee\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_b68820591eb3431b9fc2b57b52d1beee/xomHdqd0BPy0/lsm\",\"shard\":\"xomHdqd0BPy0\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2209 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_fdf078be6dcd451886cfab7b35c46781\",\"index\":\"langchain_fdf078be6dcd451886cfab7b35c46781\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_fdf078be6dcd451886cfab7b35c46781/ZQbwZQP6evkL/lsm\",\"shard\":\"ZQbwZQP6evkL\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2210 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_f9d8843e155941b39f0628ff41750614\",\"index\":\"langchain_f9d8843e155941b39f0628ff41750614\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_f9d8843e155941b39f0628ff41750614/WhlQtIneVTqi/lsm\",\"shard\":\"WhlQtIneVTqi\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2211 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_c8821979f9a241bc9bf7629bf1e97c8d\",\"index\":\"langchain_c8821979f9a241bc9bf7629bf1e97c8d\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_c8821979f9a241bc9bf7629bf1e97c8d/mDvlzkoexpKS/lsm\",\"shard\":\"mDvlzkoexpKS\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2212 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_2c8401e9c6f14e21b6c3d7434d43dd83\",\"index\":\"langchain_2c8401e9c6f14e21b6c3d7434d43dd83\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_2c8401e9c6f14e21b6c3d7434d43dd83/IfwQ3WzZJ3VR/lsm\",\"shard\":\"IfwQ3WzZJ3VR\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2213 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_7e6007304500412982898afbd63b941d\",\"index\":\"langchain_7e6007304500412982898afbd63b941d\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_7e6007304500412982898afbd63b941d/ycDa7PHJ04ab/lsm\",\"shard\":\"ycDa7PHJ04ab\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2214 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_89ff9ce25c284bac88ecb95c79c1c47f\",\"index\":\"langchain_89ff9ce25c284bac88ecb95c79c1c47f\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_89ff9ce25c284bac88ecb95c79c1c47f/iuoz4ZVw5HQV/lsm\",\"shard\":\"iuoz4ZVw5HQV\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2215 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_d816eca50eae4da8bb72d45e5fd28b69\",\"index\":\"langchain_d816eca50eae4da8bb72d45e5fd28b69\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_d816eca50eae4da8bb72d45e5fd28b69/ULV3qcctsosG/lsm\",\"shard\":\"ULV3qcctsosG\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2216 |
"{\"action\":\"lsm_compaction\",\"class\":\"LangChain_e297594ea3d24ffa80913066c127d83f\",\"index\":\"langchain_e297594ea3d24ffa80913066c127d83f\",\"level\":\"warning\",\"msg\":\"compaction halted due to shard READONLY status\",\"path\":\"/home/mabdallah/.local/share/weaviate/langchain_e297594ea3d24ffa80913066c127d83f/t4t5sjihkjSp/lsm\",\"shard\":\"t4t5sjihkjSp\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n", |
|
|
2217 |
"{\"action\":\"set_shard_read_only\",\"level\":\"warning\",\"msg\":\"Set READONLY, disk usage currently at 90.00%, threshold set to 90.00%\",\"path\":\"/home/mabdallah/.local/share/weaviate\",\"time\":\"2024-02-26T13:32:45+01:00\"}\n" |
|
|
2218 |
] |
|
|
2219 |
} |
|
|
2220 |
], |
|
|
2221 |
"source": [ |
|
|
2222 |
"print(response)" |
|
|
2223 |
] |
|
|
2224 |
}, |
|
|
2225 |
{ |
|
|
2226 |
"cell_type": "code", |
|
|
2227 |
"execution_count": null, |
|
|
2228 |
"metadata": {}, |
|
|
2229 |
"outputs": [], |
|
|
2230 |
"source": [] |
|
|
2231 |
} |
|
|
2232 |
], |
|
|
2233 |
"metadata": { |
|
|
2234 |
"kernelspec": { |
|
|
2235 |
"display_name": "base", |
|
|
2236 |
"language": "python", |
|
|
2237 |
"name": "python3" |
|
|
2238 |
}, |
|
|
2239 |
"language_info": { |
|
|
2240 |
"codemirror_mode": { |
|
|
2241 |
"name": "ipython", |
|
|
2242 |
"version": 3 |
|
|
2243 |
}, |
|
|
2244 |
"file_extension": ".py", |
|
|
2245 |
"mimetype": "text/x-python", |
|
|
2246 |
"name": "python", |
|
|
2247 |
"nbconvert_exporter": "python", |
|
|
2248 |
"pygments_lexer": "ipython3", |
|
|
2249 |
"version": "3.11.4" |
|
|
2250 |
} |
|
|
2251 |
}, |
|
|
2252 |
"nbformat": 4, |
|
|
2253 |
"nbformat_minor": 2 |
|
|
2254 |
} |