langtrace-python-sdk 2.0.13__py3-none-any.whl → 2.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. examples/pinecone_example/basic.py +7 -2
  2. examples/weaviate_example/query_text.py +1737 -0
  3. langtrace_python_sdk/__init__.py +7 -1
  4. langtrace_python_sdk/constants/instrumentation/common.py +1 -0
  5. langtrace_python_sdk/constants/instrumentation/weaviate.py +44 -0
  6. langtrace_python_sdk/instrumentation/chroma/patch.py +191 -0
  7. langtrace_python_sdk/instrumentation/openai/patch.py +1 -0
  8. langtrace_python_sdk/instrumentation/pinecone/patch.py +1 -0
  9. langtrace_python_sdk/instrumentation/qdrant/patch.py +28 -4
  10. langtrace_python_sdk/instrumentation/weaviate/__init__.py +0 -0
  11. langtrace_python_sdk/instrumentation/weaviate/instrumentation.py +66 -0
  12. langtrace_python_sdk/instrumentation/weaviate/patch.py +166 -0
  13. langtrace_python_sdk/langtrace.py +4 -0
  14. langtrace_python_sdk/types/__init__.py +1 -0
  15. langtrace_python_sdk/utils/__init__.py +0 -2
  16. langtrace_python_sdk/utils/llm.py +0 -1
  17. langtrace_python_sdk/utils/misc.py +30 -0
  18. langtrace_python_sdk/utils/types.py +19 -0
  19. langtrace_python_sdk/utils/with_root_span.py +99 -4
  20. langtrace_python_sdk/version.py +1 -1
  21. {langtrace_python_sdk-2.0.13.dist-info → langtrace_python_sdk-2.1.1.dist-info}/METADATA +30 -15
  22. {langtrace_python_sdk-2.0.13.dist-info → langtrace_python_sdk-2.1.1.dist-info}/RECORD +28 -22
  23. tests/cohere/cassettes/test_cohere_chat.yaml +19 -21
  24. tests/cohere/cassettes/test_cohere_chat_streaming.yaml +73 -135
  25. tests/cohere/cassettes/test_cohere_embed.yaml +9 -9
  26. tests/cohere/cassettes/test_cohere_rerank.yaml +8 -8
  27. {langtrace_python_sdk-2.0.13.dist-info → langtrace_python_sdk-2.1.1.dist-info}/WHEEL +0 -0
  28. {langtrace_python_sdk-2.0.13.dist-info → langtrace_python_sdk-2.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,1737 @@
1
+ # export OPENAI_APIKEY=sk-<OPENAI API KEY>
2
+ # python main.py
3
+
4
+ # Example taken from startup guide
5
+ # https://weaviate.io/developers/weaviate/starter-guides/generative
6
+
7
+ import json
8
+ import os
9
+ from pathlib import Path
10
+
11
+ import requests
12
+ import weaviate
13
+ import weaviate.classes as wvc
14
+ from weaviate.classes.aggregate import GroupByAggregate
15
+ from weaviate.classes.query import Filter, HybridFusion, MetadataQuery
16
+ from weaviate.collections.classes.grpc import Move
17
+
18
+ import langtrace_python_sdk.langtrace as langtrace
19
+ from langtrace_python_sdk import with_langtrace_root_span
20
+
21
+ # Set these environment variables
22
+ WCS_DEMO_URL = "WEVIATE CLUSTER URL"
23
+ WCS_DEMO_RO_KEY = "<WEAVIATE API KEY>"
24
+
25
+ # Connect to a WCS instance
26
+ client = weaviate.connect_to_wcs(
27
+ cluster_url=WCS_DEMO_URL,
28
+ auth_credentials=weaviate.auth.AuthApiKey(WCS_DEMO_RO_KEY),
29
+ skip_init_checks=True,
30
+ headers={"X-OpenAI-Api-Key": os.environ["OPENAI_APIKEY"]},
31
+ )
32
+
33
+ langtrace.init(api_key="asdf", write_spans_to_console=True, batch=False)
34
+
35
+
36
+ @with_langtrace_root_span()
37
+ def create():
38
+ questions = client.collections.create(
39
+ name="Question",
40
+ # Set the vectorizer to "text2vec-openai" to use the OpenAI API for vector-related operations
41
+ vectorizer_config=wvc.config.Configure.Vectorizer.text2vec_openai(),
42
+ # Ensure the `generative-openai` module is used for generative queries
43
+ generative_config=wvc.config.Configure.Generative.openai(),
44
+ )
45
+
46
+
47
+ def insert():
48
+ resp = requests.get(
49
+ "https://raw.githubusercontent.com/weaviate-tutorials/quickstart/main/data/jeopardy_tiny.json"
50
+ )
51
+ data = json.loads(resp.text) # Load data
52
+
53
+ question_objs = list()
54
+ for i, d in enumerate(data):
55
+ question_objs.append(
56
+ {
57
+ "answer": d["Answer"],
58
+ "question": d["Question"],
59
+ "category": d["Category"],
60
+ }
61
+ )
62
+
63
+ questions = client.collections.get("Question")
64
+ questions.data.insert_many(question_objs)
65
+ client.close()
66
+
67
+
68
+ @with_langtrace_root_span()
69
+ def query_data_bm25():
70
+ try:
71
+ questions = client.collections.get("Question")
72
+ response = questions.query.bm25(query="science", limit=2)
73
+
74
+ for each_obj in response.objects:
75
+ print(each_obj.properties)
76
+
77
+ finally:
78
+ client.close() # Close client gracefully
79
+
80
+
81
+ @with_langtrace_root_span()
82
+ def query_data_near_text():
83
+ try:
84
+ questions = client.collections.get("Question")
85
+ response = questions.query.near_text(
86
+ query="biology",
87
+ limit=2,
88
+ distance=0.6,
89
+ # certainty=0.7,
90
+ return_properties=["category", "question", "answer"],
91
+ # rerank=False,
92
+ return_metadata=wvc.query.MetadataQuery(
93
+ score=True, explain_score=True, distance=True
94
+ ),
95
+ filters=wvc.query.Filter.by_property("category").equal("SCIENCE"),
96
+ move_to=Move(force=0.85, concepts="study"),
97
+ # include_vector=True,
98
+ move_away=Move(force=0.45, concepts="history"),
99
+ # group_by=GroupByAggregate(prop="inPublication"),
100
+ )
101
+
102
+ for each_obj in response.objects:
103
+ print(each_obj.properties)
104
+
105
+ finally:
106
+ client.close() # Close client gracefully
107
+
108
+
109
+ @with_langtrace_root_span()
110
+ def query_fetch_object_by_id():
111
+ try:
112
+ questions = client.collections.get("Question")
113
+ response = questions.query.fetch_object_by_id(
114
+ "cb9899ad-5903-4596-9465-6ab012486855"
115
+ )
116
+
117
+ print(response)
118
+
119
+ finally:
120
+ client.close() # Close client gracefully
121
+
122
+
123
+ @with_langtrace_root_span()
124
+ def query_fetch_objects():
125
+ try:
126
+ questions = client.collections.get("Question")
127
+ response = questions.query.fetch_objects(include_vector=True)
128
+
129
+ for each_obj in response.objects:
130
+ print(each_obj.properties)
131
+
132
+ finally:
133
+ client.close() # Close client gracefully
134
+
135
+
136
+ @with_langtrace_root_span()
137
+ def query_hybrid():
138
+ try:
139
+ questions = client.collections.get("Question")
140
+ response = questions.query.hybrid(
141
+ query="human body",
142
+ target_vector="question",
143
+ limit=3,
144
+ filters=Filter.by_property("category").equal("SCIENCE"),
145
+ )
146
+
147
+ for each_obj in response.objects:
148
+ print(each_obj.properties)
149
+
150
+ finally:
151
+ client.close() # Close client gracefully
152
+
153
+
154
+ @with_langtrace_root_span()
155
+ def query_near_object():
156
+ try:
157
+ questions = client.collections.get("Question")
158
+ response = questions.query.near_object(
159
+ # Provide a `WeaviateUUID` object
160
+ near_object="cb9899ad-5903-4596-9465-6ab012486855",
161
+ return_properties=["category", "question", "answer"],
162
+ limit=1,
163
+ )
164
+
165
+ for each_obj in response.objects:
166
+ print(each_obj.properties)
167
+
168
+ finally:
169
+ client.close()
170
+
171
+
172
+ # @with_langtrace_root_span()
173
+
174
+
175
+ @with_langtrace_root_span()
176
+ def query_data_near_vector():
177
+ try:
178
+ questions = client.collections.get("Question")
179
+ response = questions.query.near_vector(
180
+ near_vector=[
181
+ -0.0037347390316426754,
182
+ 0.014777889475226402,
183
+ -0.0031122826039791107,
184
+ -0.009939171373844147,
185
+ 0.0026794152799993753,
186
+ 0.01773078367114067,
187
+ -0.010214326903223991,
188
+ -0.018871674314141273,
189
+ -0.02146216668188572,
190
+ -0.025529107078909874,
191
+ -0.02005283161997795,
192
+ 0.012643752619624138,
193
+ -0.011086773127317429,
194
+ -0.00863721314817667,
195
+ 0.01595904678106308,
196
+ 0.034119341522455215,
197
+ 0.029394712299108505,
198
+ 0.008764725178480148,
199
+ 0.027126353234052658,
200
+ -0.003603872377425432,
201
+ -0.018012650310993195,
202
+ 0.029394712299108505,
203
+ 0.0015108411898836493,
204
+ -0.017529450356960297,
205
+ 0.004580340348184109,
206
+ 0.023569459095597267,
207
+ 0.008046634495258331,
208
+ -0.012012907303869724,
209
+ -0.021005811169743538,
210
+ 0.027126353234052658,
211
+ -0.008261390961706638,
212
+ 0.026535775512456894,
213
+ -0.008818414062261581,
214
+ -0.020589720457792282,
215
+ -0.016469093039631844,
216
+ -0.018307939171791077,
217
+ 0.004295117687433958,
218
+ -0.03122013807296753,
219
+ 0.02214670181274414,
220
+ -0.025220394134521484,
221
+ 0.018925363197922707,
222
+ 0.011932373978197575,
223
+ -0.0024562703911215067,
224
+ -0.005607142113149166,
225
+ -0.013918866403400898,
226
+ -0.00790570117533207,
227
+ -0.006097054108977318,
228
+ -0.006016520317643881,
229
+ -0.007999656721949577,
230
+ 0.012650463730096817,
231
+ 0.005556808784604073,
232
+ 0.004080361686646938,
233
+ -0.028911512345075607,
234
+ -0.014308110810816288,
235
+ -0.015435579232871532,
236
+ -0.00805334560573101,
237
+ 0.010831749998033047,
238
+ -0.013932288624346256,
239
+ -0.003432738594710827,
240
+ -0.0011778018670156598,
241
+ -0.014160466380417347,
242
+ -0.004576984792947769,
243
+ -0.02756928652524948,
244
+ 0.02912626788020134,
245
+ -0.0099861491471529,
246
+ -0.008174145594239235,
247
+ -0.016791226342320442,
248
+ -0.008039923384785652,
249
+ 0.0016685526352375746,
250
+ -0.017180470749735832,
251
+ 0.021005811169743538,
252
+ 0.005707808770239353,
253
+ 0.027139775454998016,
254
+ -0.01312695350497961,
255
+ 0.039541929960250854,
256
+ -0.017368381842970848,
257
+ -0.017086515203118324,
258
+ -0.012677308171987534,
259
+ 0.01969042979180813,
260
+ -0.004969585686922073,
261
+ 0.026065995916724205,
262
+ -0.033582452684640884,
263
+ -0.02734110876917839,
264
+ 0.013173931278288364,
265
+ 0.02479088306427002,
266
+ 0.009670726023614407,
267
+ -0.0064829434268176556,
268
+ 0.020079676061868668,
269
+ -0.011865262873470783,
270
+ 0.0031793939415365458,
271
+ 0.037689659744501114,
272
+ 0.009966015815734863,
273
+ 0.010120371356606483,
274
+ 0.006831921637058258,
275
+ -0.03189124912023544,
276
+ 0.011979351751506329,
277
+ 0.0039696283638477325,
278
+ 0.009764681570231915,
279
+ -0.004382362589240074,
280
+ -0.036991700530052185,
281
+ -0.015851669013500214,
282
+ 0.0013875244185328484,
283
+ 0.004295117687433958,
284
+ -0.011053217574954033,
285
+ -0.017368381842970848,
286
+ -0.02277754619717598,
287
+ 0.0003485588822513819,
288
+ 0.008388902060687542,
289
+ 0.004053517244756222,
290
+ -0.014388645067811012,
291
+ -0.003093827050179243,
292
+ 0.013704109936952591,
293
+ 0.008543257601559162,
294
+ -0.03887081518769264,
295
+ 0.02167692221701145,
296
+ -0.01989176496863365,
297
+ 0.015824824571609497,
298
+ 0.02099238894879818,
299
+ 0.009086858481168747,
300
+ -0.016603315249085426,
301
+ 0.03887081518769264,
302
+ -0.009664014913141727,
303
+ 0.022804390639066696,
304
+ -0.021099766716361046,
305
+ 0.019153540953993797,
306
+ 0.03500521183013916,
307
+ -0.007838590070605278,
308
+ 0.0008992903167381883,
309
+ -0.009999571368098259,
310
+ -0.0006547538214363158,
311
+ 0.001299440860748291,
312
+ 0.018334783613681793,
313
+ 0.021489011123776436,
314
+ 0.01642882637679577,
315
+ -0.019932031631469727,
316
+ -0.002704581944271922,
317
+ -0.001963003072887659,
318
+ 0.017328115180134773,
319
+ 0.01340210996568203,
320
+ -0.01821398362517357,
321
+ -0.0051004523411393166,
322
+ 0.030414802953600883,
323
+ -0.026925019919872284,
324
+ 0.005331986118108034,
325
+ 0.003902517259120941,
326
+ 0.01181828510016203,
327
+ 0.04354175552725792,
328
+ 0.013972555287182331,
329
+ 0.01146259531378746,
330
+ 0.012019618414342403,
331
+ -0.0003449936048127711,
332
+ 0.014898689463734627,
333
+ 0.04507189244031906,
334
+ -0.010234460234642029,
335
+ 0.0059024314396083355,
336
+ -0.0026089486200362444,
337
+ -0.005929275881499052,
338
+ 0.0184287391602993,
339
+ -0.012482685968279839,
340
+ 0.0015561413019895554,
341
+ 0.013153797946870327,
342
+ 0.006919166538864374,
343
+ 0.009670726023614407,
344
+ 0.007194322533905506,
345
+ 0.011241128668189049,
346
+ 0.01936829648911953,
347
+ 0.0016677137464284897,
348
+ -0.006939299870282412,
349
+ 0.007368811406195164,
350
+ 0.0005993870436213911,
351
+ -0.0048185852356255054,
352
+ 0.006744677200913429,
353
+ -0.0012566575314849615,
354
+ 0.033743519335985184,
355
+ 0.037528593093156815,
356
+ 0.010422371327877045,
357
+ -0.014281266368925571,
358
+ 0.0021609810646623373,
359
+ -0.0036172945983707905,
360
+ -0.023998970165848732,
361
+ -0.005321919452399015,
362
+ 0.0008917402592487633,
363
+ 0.019086429849267006,
364
+ 0.01844216138124466,
365
+ -0.027005553245544434,
366
+ -0.0031391270458698273,
367
+ 0.00359380547888577,
368
+ -0.0109995286911726,
369
+ 0.008576813153922558,
370
+ 0.012751131318509579,
371
+ 0.009194236248731613,
372
+ 0.008603657595813274,
373
+ 0.003033427055925131,
374
+ 0.009180814027786255,
375
+ -0.6571530103683472,
376
+ -0.017099937424063683,
377
+ 0.02477746084332466,
378
+ 0.0018589806277304888,
379
+ 0.030656402930617332,
380
+ 0.028562532737851143,
381
+ 0.0038186281453818083,
382
+ -0.013851755298674107,
383
+ -0.023045990616083145,
384
+ 0.00702654430642724,
385
+ -0.0025888150557875633,
386
+ 0.013771221041679382,
387
+ -0.00536554167047143,
388
+ -0.004432695917785168,
389
+ -0.006727899424731731,
390
+ -0.02440163865685463,
391
+ 0.028696754947304726,
392
+ -0.022106435149908066,
393
+ 0.017234159633517265,
394
+ 0.0027079374995082617,
395
+ -0.026227062568068504,
396
+ 0.014026244170963764,
397
+ 0.012516241520643234,
398
+ 0.01320748683065176,
399
+ 0.016683848574757576,
400
+ 0.01828109472990036,
401
+ 0.0015980858588591218,
402
+ -0.012590063735842705,
403
+ 0.004942741245031357,
404
+ -0.00991232693195343,
405
+ -0.019932031631469727,
406
+ 0.039917752146720886,
407
+ -0.007362100295722485,
408
+ -0.0252472385764122,
409
+ 0.034441474825143814,
410
+ -0.00369782792404294,
411
+ 0.008892236277461052,
412
+ 0.03199862688779831,
413
+ 0.027166619896888733,
414
+ 0.02657604217529297,
415
+ -0.01405308861285448,
416
+ -0.010717661119997501,
417
+ 0.006593676749616861,
418
+ -0.019328029826283455,
419
+ -0.0025653261691331863,
420
+ 0.019932031631469727,
421
+ 0.007570145186036825,
422
+ -0.004835363011807203,
423
+ 0.010825038887560368,
424
+ -0.03438778594136238,
425
+ 0.026951864361763,
426
+ 0.02083132043480873,
427
+ 0.01332828775048256,
428
+ 0.012912197969853878,
429
+ -0.0025502261705696583,
430
+ -0.0009865348692983389,
431
+ 0.004181028809398413,
432
+ -0.0020066252909600735,
433
+ -0.009697570465505123,
434
+ 0.019583052024245262,
435
+ -0.014106777496635914,
436
+ -0.00161150807980448,
437
+ 0.008026501163840294,
438
+ -0.01790527254343033,
439
+ -0.013670554384589195,
440
+ 0.019032740965485573,
441
+ -0.043488066643476486,
442
+ -0.012751131318509579,
443
+ 0.016912026330828667,
444
+ -0.018952207639813423,
445
+ 0.00032695746631361544,
446
+ 0.011764596216380596,
447
+ -0.014200733043253422,
448
+ 0.00056163698900491,
449
+ -0.00032632829970680177,
450
+ 0.034897830337285995,
451
+ 0.0006023231544531882,
452
+ -0.0018052917439490557,
453
+ -0.008375479839742184,
454
+ 0.013851755298674107,
455
+ -0.01289206463843584,
456
+ 0.0007713595405220985,
457
+ -0.004603829234838486,
458
+ -0.019019318744540215,
459
+ 0.03379720821976662,
460
+ -0.03836077079176903,
461
+ -0.0009353625937364995,
462
+ 0.015341623686254025,
463
+ 0.01602615788578987,
464
+ -0.014308110810816288,
465
+ 0.008664057590067387,
466
+ 0.014388645067811012,
467
+ -0.01673753745853901,
468
+ 0.0032062383834272623,
469
+ 0.007482900749891996,
470
+ -0.00710707763209939,
471
+ 0.0014462467515841126,
472
+ -0.018643496558070183,
473
+ 0.008462724275887012,
474
+ -0.04338068887591362,
475
+ -0.002253259066492319,
476
+ -0.0002050037874141708,
477
+ 0.025623062625527382,
478
+ 0.004466251470148563,
479
+ -0.0013279631966724992,
480
+ 0.008107034489512444,
481
+ -0.023569459095597267,
482
+ -0.004217939916998148,
483
+ 0.01943540759384632,
484
+ -0.019166963174939156,
485
+ 0.023045990616083145,
486
+ 0.015529535710811615,
487
+ -0.009106991812586784,
488
+ 0.004033383913338184,
489
+ -0.02138163335621357,
490
+ -0.02495194971561432,
491
+ 0.028213554993271828,
492
+ 0.0037179612554609776,
493
+ -0.012717575766146183,
494
+ -0.0036474945954978466,
495
+ 0.019542785361409187,
496
+ -0.0011853518662974238,
497
+ 0.01797238364815712,
498
+ -0.01951594091951847,
499
+ 0.0016475802985951304,
500
+ 0.028562532737851143,
501
+ -0.007503034081310034,
502
+ -0.027998799458146095,
503
+ -0.006690988317131996,
504
+ -0.029394712299108505,
505
+ 0.01215384155511856,
506
+ -0.018334783613681793,
507
+ 0.010979394428431988,
508
+ -0.006748032756149769,
509
+ 0.012462552636861801,
510
+ 0.018482428044080734,
511
+ 0.01289206463843584,
512
+ 0.015234245918691158,
513
+ 0.017596561461687088,
514
+ -0.021435322239995003,
515
+ -0.030387958511710167,
516
+ -0.006016520317643881,
517
+ 0.011422328650951385,
518
+ -0.015046334825456142,
519
+ -0.010321704670786858,
520
+ -0.020804475992918015,
521
+ -0.024213725700974464,
522
+ 0.009194236248731613,
523
+ -0.04088415205478668,
524
+ -0.020415231585502625,
525
+ -0.0030585937201976776,
526
+ -0.011066639795899391,
527
+ -0.01829451695084572,
528
+ 0.00014890301099512726,
529
+ 0.00485885189846158,
530
+ 0.017677094787359238,
531
+ -0.0004987202119082212,
532
+ -0.013442376628518105,
533
+ -0.010764638893306255,
534
+ -0.0016257691895589232,
535
+ 0.022509101778268814,
536
+ 0.014657089486718178,
537
+ -0.011348506435751915,
538
+ -0.01628118008375168,
539
+ -0.010972683317959309,
540
+ -0.016227491199970245,
541
+ -0.03787757083773613,
542
+ 0.030334269627928734,
543
+ -0.006378921214491129,
544
+ -0.014912111684679985,
545
+ -0.0067346105352044106,
546
+ -0.01153641752898693,
547
+ -0.0013497743057087064,
548
+ 0.00932845938950777,
549
+ 0.014187310822308064,
550
+ -0.02602572925388813,
551
+ -0.028320932760834694,
552
+ 0.003560249926522374,
553
+ -0.032106004655361176,
554
+ -0.019341452047228813,
555
+ -0.009026458486914635,
556
+ 0.010529750026762486,
557
+ -0.01499264594167471,
558
+ -0.00359380547888577,
559
+ -0.011677351780235767,
560
+ -0.009543214924633503,
561
+ 0.022737279534339905,
562
+ 0.011778018437325954,
563
+ 0.016912026330828667,
564
+ 0.03540787845849991,
565
+ -0.0007352872635237873,
566
+ 0.004610540345311165,
567
+ -0.011637085117399693,
568
+ 0.020428653806447983,
569
+ -0.014348377473652363,
570
+ -0.020254164934158325,
571
+ 0.006016520317643881,
572
+ 0.01440206728875637,
573
+ -0.0023807703983038664,
574
+ 0.02068367600440979,
575
+ 0.02253594622015953,
576
+ -0.028938356786966324,
577
+ -0.0002110857458319515,
578
+ -0.014616822823882103,
579
+ 0.03454885259270668,
580
+ -0.019019318744540215,
581
+ 0.004506518132984638,
582
+ -0.015408734790980816,
583
+ 0.003046849276870489,
584
+ 0.007388944737613201,
585
+ 0.01649593748152256,
586
+ -0.01030157133936882,
587
+ -0.013677265495061874,
588
+ -0.030710091814398766,
589
+ 0.011006239801645279,
590
+ -0.0006430093199014664,
591
+ -0.01196592953056097,
592
+ -0.015100023709237576,
593
+ -0.00824796874076128,
594
+ -0.0014940634137019515,
595
+ -0.0008648958173580468,
596
+ 0.00020814963500015438,
597
+ 0.002600559499114752,
598
+ 0.02014678716659546,
599
+ -0.011529706418514252,
600
+ 0.010952549986541271,
601
+ 0.009100280702114105,
602
+ 0.017690517008304596,
603
+ 0.012684019282460213,
604
+ -0.02036154270172119,
605
+ 0.0019898475147783756,
606
+ 0.01573086902499199,
607
+ 0.0076104118488729,
608
+ 0.005174274556338787,
609
+ 0.01065055001527071,
610
+ -0.007670811843127012,
611
+ 0.019851498305797577,
612
+ -0.026280751451849937,
613
+ 0.020938700065016747,
614
+ 0.005056830123066902,
615
+ 0.006979566533118486,
616
+ -0.006456098984926939,
617
+ 0.023998970165848732,
618
+ -0.01719389297068119,
619
+ 0.044883981347084045,
620
+ -0.0007898150943219662,
621
+ 0.01247597485780716,
622
+ 0.002894171280786395,
623
+ -0.01595904678106308,
624
+ 0.0034528719261288643,
625
+ -0.02269701287150383,
626
+ -0.011113617569208145,
627
+ 0.0034629388246685266,
628
+ 0.009731126017868519,
629
+ 0.013918866403400898,
630
+ -0.010892149992287159,
631
+ 0.0030233601573854685,
632
+ 0.021435322239995003,
633
+ 0.010449216701090336,
634
+ 0.029233645647764206,
635
+ 0.006617165636271238,
636
+ -0.007482900749891996,
637
+ 0.014522867277264595,
638
+ -0.008046634495258331,
639
+ 0.021515855565667152,
640
+ 0.024683505296707153,
641
+ -0.015824824571609497,
642
+ -0.0337703637778759,
643
+ 0.007758056744933128,
644
+ 0.004170962143689394,
645
+ -0.02547541819512844,
646
+ 0.0021358144003897905,
647
+ -0.0007180899847298861,
648
+ -0.026589464396238327,
649
+ 0.021327944472432137,
650
+ 0.006744677200913429,
651
+ -0.009664014913141727,
652
+ 0.013811487704515457,
653
+ 0.0150597570464015,
654
+ -0.017247581854462624,
655
+ -0.006701054982841015,
656
+ -0.01571744680404663,
657
+ 0.020281009376049042,
658
+ 0.00282705994322896,
659
+ -0.016925448551774025,
660
+ 0.004983007907867432,
661
+ -0.006925877649337053,
662
+ 0.009751259349286556,
663
+ -0.031193293631076813,
664
+ 0.04246797785162926,
665
+ 0.01873745210468769,
666
+ 0.0066809216514229774,
667
+ -0.008308368735015392,
668
+ 0.012368597090244293,
669
+ 0.0031542270444333553,
670
+ -0.022952035069465637,
671
+ 0.019542785361409187,
672
+ 0.002619015285745263,
673
+ -0.0076372562907636166,
674
+ 0.01742207072675228,
675
+ 0.007878856733441353,
676
+ -0.012100151740014553,
677
+ 0.007341966964304447,
678
+ -0.0013489354168996215,
679
+ 0.02471034973859787,
680
+ -0.006321876309812069,
681
+ -0.005103807896375656,
682
+ -0.02160981111228466,
683
+ 0.006865477189421654,
684
+ -0.0018036139663308859,
685
+ 0.0018002584110945463,
686
+ -0.034522008150815964,
687
+ -0.015355045907199383,
688
+ -0.022884923964738846,
689
+ -0.02107292227447033,
690
+ 0.01138877309858799,
691
+ 0.00117612408939749,
692
+ -0.002085481071844697,
693
+ 0.027596130967140198,
694
+ -0.004228006582707167,
695
+ -0.004550140351057053,
696
+ -0.026616308838129044,
697
+ -0.03068324737250805,
698
+ -0.01703282631933689,
699
+ 0.07231904566287994,
700
+ 0.014979223720729351,
701
+ -0.016482515260577202,
702
+ 0.021972211077809334,
703
+ -0.00607692077755928,
704
+ -0.026683419942855835,
705
+ -0.03183756023645401,
706
+ 0.0030351048335433006,
707
+ 0.013194064609706402,
708
+ -0.02006625384092331,
709
+ -0.0017583138542249799,
710
+ 0.02748875319957733,
711
+ 0.011690774001181126,
712
+ 0.007919123396277428,
713
+ 0.0219990573823452,
714
+ 0.002231447957456112,
715
+ -0.005905786994844675,
716
+ -0.023985547944903374,
717
+ -0.009623748250305653,
718
+ -0.02748875319957733,
719
+ 0.01239544153213501,
720
+ 0.01007339358329773,
721
+ 0.0021525921765714884,
722
+ 0.029072578996419907,
723
+ 0.0008149818168021739,
724
+ -0.023609725758433342,
725
+ 0.0234620813280344,
726
+ 0.006761454977095127,
727
+ 0.0233010146766901,
728
+ -0.02464323863387108,
729
+ -0.01544900145381689,
730
+ 0.0007281567086465657,
731
+ 0.0009429125930182636,
732
+ -0.0034495163708925247,
733
+ -0.001994880847632885,
734
+ -0.0034562277141958475,
735
+ 0.006003098096698523,
736
+ -0.016066424548625946,
737
+ -0.00769094517454505,
738
+ -0.0062547652050852776,
739
+ 0.038065481930971146,
740
+ 0.007194322533905506,
741
+ 0.02826724387705326,
742
+ -0.02385132573544979,
743
+ -0.005919209215790033,
744
+ 0.0014428910799324512,
745
+ -0.0021978924050927162,
746
+ 0.015261090360581875,
747
+ -0.011845129542052746,
748
+ -0.03178387135267258,
749
+ 0.0022180257365107536,
750
+ -0.0039058728143572807,
751
+ 0.012489397078752518,
752
+ -0.018804563209414482,
753
+ 0.023327859118580818,
754
+ -0.00035464082611724734,
755
+ -0.012999442405998707,
756
+ -0.004972941242158413,
757
+ -0.026280751451849937,
758
+ -0.023663414642214775,
759
+ -0.04934016615152359,
760
+ -0.030146358534693718,
761
+ 0.005583653226494789,
762
+ -0.004587051458656788,
763
+ -0.04834691807627678,
764
+ -0.00631180964410305,
765
+ -0.012187397107481956,
766
+ 0.005402452778071165,
767
+ -0.014039666391909122,
768
+ -0.00359380547888577,
769
+ 0.011979351751506329,
770
+ -0.04300486668944359,
771
+ 0.0025418372824788094,
772
+ -0.013798065483570099,
773
+ 0.03339454159140587,
774
+ 0.012173974886536598,
775
+ 0.011046506464481354,
776
+ 0.010529750026762486,
777
+ 0.020817898213863373,
778
+ 0.01774420589208603,
779
+ 0.011019662022590637,
780
+ -0.01057001668959856,
781
+ -0.003922650590538979,
782
+ -0.008456013165414333,
783
+ 0.022952035069465637,
784
+ -0.012308197095990181,
785
+ 0.001498257857747376,
786
+ -0.00673796609044075,
787
+ -0.007596989627927542,
788
+ -0.0010595183121040463,
789
+ -0.001191224087961018,
790
+ -0.0003775005752686411,
791
+ 0.008596946485340595,
792
+ -0.008268102072179317,
793
+ 0.017985805869102478,
794
+ 0.009684148244559765,
795
+ 0.004160895477980375,
796
+ 0.01990518718957901,
797
+ 0.0025972039438784122,
798
+ -0.010979394428431988,
799
+ 0.003018326824530959,
800
+ -0.0037481614854186773,
801
+ -0.01212028507143259,
802
+ -0.02144874446094036,
803
+ 0.0007050872081890702,
804
+ 0.009509659372270107,
805
+ 0.007617122959345579,
806
+ 0.0036542057059705257,
807
+ -0.0020989032927900553,
808
+ 0.006056786980479956,
809
+ 0.025837818160653114,
810
+ -0.02091185562312603,
811
+ 0.00832179095596075,
812
+ 5.91417592659127e-05,
813
+ -0.0002946601889561862,
814
+ -0.013569887727499008,
815
+ 0.012583352625370026,
816
+ 0.013583309948444366,
817
+ -0.013368554413318634,
818
+ -0.01354975439608097,
819
+ 0.006784943863749504,
820
+ 0.0006564315990544856,
821
+ 0.00897948071360588,
822
+ 0.02818671055138111,
823
+ -0.008811702951788902,
824
+ 0.03857552632689476,
825
+ -0.002979737939313054,
826
+ -0.0068285660818219185,
827
+ -0.03167649358510971,
828
+ -0.007154055405408144,
829
+ 0.006774877198040485,
830
+ 0.025931773707270622,
831
+ -0.01246926374733448,
832
+ -0.03930032625794411,
833
+ -0.004311895463615656,
834
+ -0.016227491199970245,
835
+ -0.02022732049226761,
836
+ 0.020428653806447983,
837
+ -0.024280838668346405,
838
+ -0.02671026438474655,
839
+ -0.021878255531191826,
840
+ -0.009080147370696068,
841
+ -0.0050702523440122604,
842
+ 0.012965886853635311,
843
+ 0.04244113340973854,
844
+ -0.023287592455744743,
845
+ -0.017153626307845116,
846
+ 0.015126868151128292,
847
+ 0.004509873688220978,
848
+ 0.004546784795820713,
849
+ -0.020482342690229416,
850
+ -0.03556894510984421,
851
+ 0.010053260251879692,
852
+ -0.011482728645205498,
853
+ 0.016710693016648293,
854
+ -0.03905872628092766,
855
+ -0.015395312570035458,
856
+ -0.00457027368247509,
857
+ 0.010596861131489277,
858
+ 0.027622975409030914,
859
+ 0.02128767780959606,
860
+ -0.03586423397064209,
861
+ -0.004238073248416185,
862
+ 0.008966058492660522,
863
+ 0.0067580994218587875,
864
+ 0.015435579232871532,
865
+ -0.011952507309615612,
866
+ 0.015435579232871532,
867
+ -0.027703510597348213,
868
+ 0.01727442629635334,
869
+ -0.011207573115825653,
870
+ -0.029555778950452805,
871
+ 0.006013164762407541,
872
+ -0.004271628800779581,
873
+ 0.001421918859705329,
874
+ 0.026133107021450996,
875
+ -0.0150597570464015,
876
+ -0.00991903804242611,
877
+ -0.024495594203472137,
878
+ -0.03382405266165733,
879
+ -0.01081161666661501,
880
+ -0.01681807078421116,
881
+ -0.0001783690240699798,
882
+ -0.007791612297296524,
883
+ -0.025904929265379906,
884
+ -0.021099766716361046,
885
+ 0.03446831926703453,
886
+ 0.004399140365421772,
887
+ -0.0020972255151718855,
888
+ -0.013066553510725498,
889
+ 0.03913925960659981,
890
+ -0.0020234030671417713,
891
+ 0.024844571948051453,
892
+ -0.0056977421045303345,
893
+ -0.0017281138570979238,
894
+ -0.034656230360269547,
895
+ 0.003164293710142374,
896
+ -0.026777375489473343,
897
+ 0.012489397078752518,
898
+ -0.004234717693179846,
899
+ 0.00964388158172369,
900
+ 0.03530050069093704,
901
+ 0.0053756083361804485,
902
+ -0.012502819299697876,
903
+ 0.0011668963124975562,
904
+ 0.02501906082034111,
905
+ -0.008972769603133202,
906
+ 0.005976253654807806,
907
+ 0.006580254528671503,
908
+ -0.03454885259270668,
909
+ -0.013865177519619465,
910
+ -0.028723599389195442,
911
+ -0.02664315328001976,
912
+ -0.03221338242292404,
913
+ 0.035193122923374176,
914
+ 0.007556722965091467,
915
+ 0.006919166538864374,
916
+ 0.016254335641860962,
917
+ 0.0060836318880319595,
918
+ -0.014576556161046028,
919
+ 0.023327859118580818,
920
+ -0.003936072811484337,
921
+ 0.04273642227053642,
922
+ 0.00243110372684896,
923
+ 0.015972469002008438,
924
+ 0.028320932760834694,
925
+ -0.008127167820930481,
926
+ -0.03401196375489235,
927
+ 0.025676751509308815,
928
+ 0.00030074213282205164,
929
+ 0.004922607447952032,
930
+ 0.015462423674762249,
931
+ -0.00739565584808588,
932
+ -0.005546742118895054,
933
+ -0.01912669651210308,
934
+ 0.0040870727971196175,
935
+ 0.010361971333622932,
936
+ -0.023743947967886925,
937
+ -0.05315208435058594,
938
+ 0.019153540953993797,
939
+ -0.025690173730254173,
940
+ 0.008160723373293877,
941
+ -0.019005896523594856,
942
+ -0.023502347990870476,
943
+ -0.005724586546421051,
944
+ 0.0016106691909953952,
945
+ 0.013730954378843307,
946
+ 0.011059928685426712,
947
+ -0.0003577866591513157,
948
+ -0.01472420059144497,
949
+ -0.01437522191554308,
950
+ 0.008697613142430782,
951
+ -0.020576298236846924,
952
+ 0.01634829118847847,
953
+ 0.00806005671620369,
954
+ 0.002744848607107997,
955
+ 0.006086987443268299,
956
+ -0.014281266368925571,
957
+ -0.01006668247282505,
958
+ -0.00206366996280849,
959
+ 0.006231276318430901,
960
+ 0.0344146303832531,
961
+ -0.011986062861979008,
962
+ -0.036750100553035736,
963
+ 0.015234245918691158,
964
+ -0.0053756083361804485,
965
+ -0.023260748013854027,
966
+ 0.0010653905337676406,
967
+ -0.012563219293951988,
968
+ 0.034656230360269547,
969
+ -0.033099252730607986,
970
+ -0.010200904682278633,
971
+ 0.00232372572645545,
972
+ 0.016173802316188812,
973
+ 0.018549539148807526,
974
+ 0.00666078832000494,
975
+ -0.01022103801369667,
976
+ -0.0013086687540635467,
977
+ -0.013039709068834782,
978
+ -0.020925277844071388,
979
+ 0.015865091234445572,
980
+ 0.006295031867921352,
981
+ 0.0068990327417850494,
982
+ -0.0013313187519088387,
983
+ -0.005127296783030033,
984
+ 0.002805248834192753,
985
+ -0.021180300042033195,
986
+ -0.006701054982841015,
987
+ -0.0219185221940279,
988
+ -0.016603315249085426,
989
+ 0.014818156138062477,
990
+ -0.005358830559998751,
991
+ -0.01834820583462715,
992
+ 0.014012821950018406,
993
+ 0.028159866109490395,
994
+ -0.015126868151128292,
995
+ -0.007831878960132599,
996
+ 0.03293818607926369,
997
+ -0.017717361450195312,
998
+ 0.019341452047228813,
999
+ 0.004479673691093922,
1000
+ 0.004422629252076149,
1001
+ -0.011757885105907917,
1002
+ 0.005338697228580713,
1003
+ 0.021193722262978554,
1004
+ -0.029099423438310623,
1005
+ 0.0034629388246685266,
1006
+ -0.036052145063877106,
1007
+ -0.009596903808414936,
1008
+ 0.002874037716537714,
1009
+ 0.001696235965937376,
1010
+ 0.011422328650951385,
1011
+ 0.0018203917425125837,
1012
+ -0.011395484209060669,
1013
+ 0.024186881259083748,
1014
+ 0.012637041509151459,
1015
+ 0.011133750900626183,
1016
+ -0.02648208476603031,
1017
+ -0.025609640404582024,
1018
+ 0.03275027498602867,
1019
+ 0.013200775720179081,
1020
+ -0.014240999706089497,
1021
+ 0.015006068162620068,
1022
+ -0.009106991812586784,
1023
+ 0.02097896672785282,
1024
+ -0.036454811692237854,
1025
+ 0.010476061142981052,
1026
+ 0.019770964980125427,
1027
+ -0.04571615904569626,
1028
+ -0.010019704699516296,
1029
+ -0.01371082104742527,
1030
+ 0.010596861131489277,
1031
+ 0.000424058991484344,
1032
+ 0.002592170611023903,
1033
+ -0.011066639795899391,
1034
+ -0.0005436008214019239,
1035
+ -0.04120628535747528,
1036
+ 0.015314779244363308,
1037
+ -0.00048110351781360805,
1038
+ -0.02307283505797386,
1039
+ -0.015046334825456142,
1040
+ -0.00041818676982074976,
1041
+ -0.015287934802472591,
1042
+ 0.0030300712678581476,
1043
+ -0.01188539620488882,
1044
+ -0.01975754275918007,
1045
+ 0.010214326903223991,
1046
+ -0.0202944315969944,
1047
+ -0.05497750639915466,
1048
+ -0.01602615788578987,
1049
+ -0.0009227792033925653,
1050
+ 0.03205231577157974,
1051
+ 0.014496022835373878,
1052
+ -0.02300572395324707,
1053
+ -0.028643066063523293,
1054
+ 0.012838375754654408,
1055
+ -0.02301914617419243,
1056
+ -0.003046849276870489,
1057
+ -0.004181028809398413,
1058
+ 0.0033958274871110916,
1059
+ 0.0035166277084499598,
1060
+ 0.020885011181235313,
1061
+ -0.008603657595813274,
1062
+ -0.016375137493014336,
1063
+ 0.008664057590067387,
1064
+ 0.0021861479617655277,
1065
+ -0.014455756172537804,
1066
+ 0.0012851797509938478,
1067
+ 0.006103765219449997,
1068
+ 0.025059327483177185,
1069
+ 0.02385132573544979,
1070
+ 0.031085915863513947,
1071
+ -0.029958447441458702,
1072
+ -0.010523038916289806,
1073
+ 0.01633486896753311,
1074
+ -0.016858337447047234,
1075
+ 0.003506561042740941,
1076
+ -0.005429297219961882,
1077
+ -0.031327515840530396,
1078
+ -0.005996386986225843,
1079
+ -0.008019790053367615,
1080
+ -0.023878170177340508,
1081
+ 0.005959475878626108,
1082
+ 0.008388902060687542,
1083
+ -0.0056507643312215805,
1084
+ -0.0053756083361804485,
1085
+ -0.03269658237695694,
1086
+ 0.008744591847062111,
1087
+ -0.013663843274116516,
1088
+ -0.03986406326293945,
1089
+ 0.011207573115825653,
1090
+ -0.01215384155511856,
1091
+ 0.013308154419064522,
1092
+ 0.04222637787461281,
1093
+ -0.016254335641860962,
1094
+ -0.02402581460773945,
1095
+ -0.008617079816758633,
1096
+ -0.001504968968220055,
1097
+ 0.010616994462907314,
1098
+ 0.029851067811250687,
1099
+ 0.004506518132984638,
1100
+ 0.037528593093156815,
1101
+ -0.00046516460133716464,
1102
+ -0.015006068162620068,
1103
+ -0.015838246792554855,
1104
+ -0.0027414930518716574,
1105
+ -0.010429082438349724,
1106
+ 0.028133021667599678,
1107
+ 0.004187739919871092,
1108
+ 0.006630588322877884,
1109
+ 0.03723330423235893,
1110
+ -0.03556894510984421,
1111
+ 0.018093183636665344,
1112
+ -0.027784043923020363,
1113
+ 0.018549539148807526,
1114
+ -0.013737665489315987,
1115
+ -0.00039952146471478045,
1116
+ -0.01914011873304844,
1117
+ 0.019623318687081337,
1118
+ 0.012784686870872974,
1119
+ -0.02091185562312603,
1120
+ -0.02355603687465191,
1121
+ -0.00965059269219637,
1122
+ 0.01022774912416935,
1123
+ 0.00499643012881279,
1124
+ -0.02479088306427002,
1125
+ -0.009979438036680222,
1126
+ -0.028777290135622025,
1127
+ 0.009549926035106182,
1128
+ 0.0036575612612068653,
1129
+ -0.0036709834821522236,
1130
+ -0.04034726321697235,
1131
+ -0.006905743852257729,
1132
+ 0.005130652338266373,
1133
+ -0.016589893028140068,
1134
+ 0.02136821113526821,
1135
+ 0.19242127239704132,
1136
+ -0.002301914617419243,
1137
+ 0.014173888601362705,
1138
+ 0.040857307612895966,
1139
+ 0.008462724275887012,
1140
+ -0.004298473242670298,
1141
+ 0.014710778370499611,
1142
+ -0.0006044203764759004,
1143
+ -0.002439492614939809,
1144
+ 0.010590150021016598,
1145
+ 0.02052260935306549,
1146
+ 0.003530049929395318,
1147
+ 0.01196592953056097,
1148
+ 0.002729748608544469,
1149
+ 0.01007339358329773,
1150
+ -0.02315337024629116,
1151
+ -0.005127296783030033,
1152
+ -0.00485885189846158,
1153
+ -0.011979351751506329,
1154
+ -0.008039923384785652,
1155
+ 0.02719346433877945,
1156
+ -0.022334612905979156,
1157
+ 0.02246883511543274,
1158
+ -0.018455583602190018,
1159
+ 0.02014678716659546,
1160
+ -0.0025938483886420727,
1161
+ 0.0009194236481562257,
1162
+ -0.004140762146562338,
1163
+ -0.003184427274391055,
1164
+ 0.007590278517454863,
1165
+ -0.03052218072116375,
1166
+ 0.0031793939415365458,
1167
+ 0.0028723599389195442,
1168
+ -0.00871774647384882,
1169
+ -0.009100280702114105,
1170
+ -0.0005704453215003014,
1171
+ 0.0202944315969944,
1172
+ 0.01930118538439274,
1173
+ 0.010898861102759838,
1174
+ 0.022119857370853424,
1175
+ 0.016214068979024887,
1176
+ -0.01479131169617176,
1177
+ 0.03240129351615906,
1178
+ 0.012294774875044823,
1179
+ -0.0036542057059705257,
1180
+ 0.0028924935031682253,
1181
+ -0.0068184994161129,
1182
+ 0.017220737412571907,
1183
+ 0.005875586997717619,
1184
+ 0.020858164876699448,
1185
+ -0.03170333802700043,
1186
+ 0.040239885449409485,
1187
+ 0.010939127765595913,
1188
+ 0.010187482461333275,
1189
+ 0.003338783048093319,
1190
+ -0.005217897240072489,
1191
+ -0.0020586366299539804,
1192
+ -0.009006325155496597,
1193
+ -0.011623662896454334,
1194
+ 0.005852098111063242,
1195
+ -0.0337703637778759,
1196
+ 0.025690173730254173,
1197
+ -0.010905572213232517,
1198
+ 0.03385089710354805,
1199
+ -0.007422500289976597,
1200
+ 0.04456184804439545,
1201
+ -0.014267844147980213,
1202
+ 0.005835320334881544,
1203
+ 0.015502690337598324,
1204
+ 0.008939214050769806,
1205
+ -0.002206281293183565,
1206
+ 0.002040180843323469,
1207
+ -0.01782473921775818,
1208
+ -0.008194279856979847,
1209
+ -0.00922108069062233,
1210
+ -0.011778018437325954,
1211
+ 0.01803949475288391,
1212
+ 0.012355174869298935,
1213
+ 0.009422414936125278,
1214
+ 0.01223437488079071,
1215
+ -0.005717875435948372,
1216
+ -0.013066553510725498,
1217
+ -0.010234460234642029,
1218
+ -0.0015376857481896877,
1219
+ 0.00631516519933939,
1220
+ -0.019851498305797577,
1221
+ 0.020187053829431534,
1222
+ -0.02091185562312603,
1223
+ -0.017865005880594254,
1224
+ -0.022656746208667755,
1225
+ -0.007952678948640823,
1226
+ 0.027864577248692513,
1227
+ -0.02006625384092331,
1228
+ -0.017314692959189415,
1229
+ 0.013811487704515457,
1230
+ 0.009355303831398487,
1231
+ -0.0166435819119215,
1232
+ 0.01795896142721176,
1233
+ -0.02084474265575409,
1234
+ -0.022052746266126633,
1235
+ -0.0018807918531820178,
1236
+ 0.012610197067260742,
1237
+ 0.007892278954386711,
1238
+ 0.0054695638827979565,
1239
+ -0.009865348227322102,
1240
+ 0.034360941499471664,
1241
+ -0.0049528079107403755,
1242
+ 0.005281652789562941,
1243
+ 0.00311731593683362,
1244
+ 0.0017247581854462624,
1245
+ 0.013187353499233723,
1246
+ -0.02246883511543274,
1247
+ -0.0003468811046332121,
1248
+ -0.013999399729073048,
1249
+ 0.0067346105352044106,
1250
+ 0.02237487956881523,
1251
+ 0.03591792285442352,
1252
+ -0.015408734790980816,
1253
+ 0.01951594091951847,
1254
+ -0.025757284834980965,
1255
+ 0.010180771350860596,
1256
+ -0.03355560824275017,
1257
+ -0.0071808998472988605,
1258
+ 0.009932460263371468,
1259
+ -0.004744763020426035,
1260
+ -0.02021389827132225,
1261
+ 0.007744634058326483,
1262
+ 0.019421985372900963,
1263
+ 0.00015865510795265436,
1264
+ -0.04633358493447304,
1265
+ -0.0073553891852498055,
1266
+ -0.029475245624780655,
1267
+ 0.019381718710064888,
1268
+ -0.011053217574954033,
1269
+ 0.011375350877642632,
1270
+ -0.006248054094612598,
1271
+ -0.0037917837034910917,
1272
+ -0.01930118538439274,
1273
+ -0.031005380675196648,
1274
+ 0.004523295909166336,
1275
+ -0.0005939342663623393,
1276
+ 0.019717274233698845,
1277
+ 0.005405808333307505,
1278
+ 0.015690602362155914,
1279
+ 0.014173888601362705,
1280
+ 0.0010972684249281883,
1281
+ 0.01464366726577282,
1282
+ -0.009113702923059464,
1283
+ -0.010100238025188446,
1284
+ 0.015704024583101273,
1285
+ -0.013811487704515457,
1286
+ 0.002405937062576413,
1287
+ -0.0002340503706363961,
1288
+ 0.01930118538439274,
1289
+ 0.009187525138258934,
1290
+ -0.018455583602190018,
1291
+ -0.013878599740564823,
1292
+ -0.02936786785721779,
1293
+ 0.0010813294211402535,
1294
+ 0.009127125144004822,
1295
+ -0.007341966964304447,
1296
+ 0.006731254979968071,
1297
+ 0.04211900010704994,
1298
+ -0.02099238894879818,
1299
+ -0.007617122959345579,
1300
+ 0.00933517049998045,
1301
+ -0.17180471122264862,
1302
+ 0.010523038916289806,
1303
+ 0.01626775786280632,
1304
+ -0.010898861102759838,
1305
+ 0.021744033321738243,
1306
+ 0.01154312863945961,
1307
+ 0.021005811169743538,
1308
+ -0.0040870727971196175,
1309
+ 9.71539702732116e-05,
1310
+ 0.004603829234838486,
1311
+ 0.02571701817214489,
1312
+ 0.02347550354897976,
1313
+ -0.003936072811484337,
1314
+ -0.00991232693195343,
1315
+ 0.012066596187651157,
1316
+ 0.005862164776772261,
1317
+ -0.02563648484647274,
1318
+ 0.018952207639813423,
1319
+ -0.008086901158094406,
1320
+ 0.012610197067260742,
1321
+ 0.005415874999016523,
1322
+ -0.03181071579456329,
1323
+ 0.0002797698834910989,
1324
+ -0.024267416447401047,
1325
+ 0.000947107037063688,
1326
+ 0.008167434483766556,
1327
+ 0.01479131169617176,
1328
+ 0.0054393638856709,
1329
+ -0.029314178973436356,
1330
+ -0.017475759610533714,
1331
+ -0.016697270795702934,
1332
+ 0.004754829686135054,
1333
+ 0.006597032304853201,
1334
+ -0.002078769961372018,
1335
+ 0.010523038916289806,
1336
+ -0.0017935471842065454,
1337
+ -0.011220995336771011,
1338
+ -0.008919080719351768,
1339
+ -0.01960989646613598,
1340
+ 0.026388129219412804,
1341
+ 0.0043622287921607494,
1342
+ 0.0007222844287753105,
1343
+ 0.029877912253141403,
1344
+ 0.0013069909764453769,
1345
+ -0.00631180964410305,
1346
+ -0.014200733043253422,
1347
+ 0.014549711719155312,
1348
+ 0.03154227137565613,
1349
+ 0.018079761415719986,
1350
+ -0.02224065735936165,
1351
+ 0.011167306452989578,
1352
+ -0.00019231557962484658,
1353
+ 0.0021744032856076956,
1354
+ -0.01215384155511856,
1355
+ 0.03828023746609688,
1356
+ 0.017636828124523163,
1357
+ 0.003377371933311224,
1358
+ 0.01371082104742527,
1359
+ 0.004486384801566601,
1360
+ -0.0034058941528201103,
1361
+ 0.009751259349286556,
1362
+ -0.04206531122326851,
1363
+ 0.00020164823217783123,
1364
+ 0.014670511707663536,
1365
+ -0.02944840118288994,
1366
+ -0.023059412837028503,
1367
+ -0.010368682444095612,
1368
+ -0.004056872799992561,
1369
+ -0.01774420589208603,
1370
+ -0.010026415809988976,
1371
+ 0.0009202625369653106,
1372
+ -0.023207059130072594,
1373
+ 0.0021878257393836975,
1374
+ -0.017932116985321045,
1375
+ 0.008113745599985123,
1376
+ 0.01212028507143259,
1377
+ -0.001818713964894414,
1378
+ 0.0016106691909953952,
1379
+ 0.00025816846755333245,
1380
+ -0.005644053220748901,
1381
+ -0.009630459360778332,
1382
+ 0.01581140235066414,
1383
+ -0.023354703560471535,
1384
+ -0.008033212274312973,
1385
+ 0.03401196375489235,
1386
+ 0.004271628800779581,
1387
+ 0.01774420589208603,
1388
+ 0.0008267262601293623,
1389
+ 0.011710907332599163,
1390
+ 0.004610540345311165,
1391
+ 0.01720731519162655,
1392
+ -0.054574839770793915,
1393
+ -0.013489354401826859,
1394
+ -0.005063541233539581,
1395
+ 0.02068367600440979,
1396
+ 0.005761497654020786,
1397
+ -0.020576298236846924,
1398
+ -0.00964388158172369,
1399
+ 0.017475759610533714,
1400
+ -0.011784729547798634,
1401
+ 0.002919337945058942,
1402
+ 0.0032028828281909227,
1403
+ -0.019878342747688293,
1404
+ 0.02036154270172119,
1405
+ 0.022817812860012054,
1406
+ -0.000618262100033462,
1407
+ 0.0018136806320399046,
1408
+ 0.0252472385764122,
1409
+ 0.05296416953206062,
1410
+ -0.005754786543548107,
1411
+ -0.012227663770318031,
1412
+ 0.007335255853831768,
1413
+ 0.00300993793644011,
1414
+ -0.0004538396024145186,
1415
+ -0.0233010146766901,
1416
+ 0.02044207602739334,
1417
+ -0.00972441490739584,
1418
+ -0.02068367600440979,
1419
+ 0.013106820173561573,
1420
+ -0.019623318687081337,
1421
+ 0.02797195501625538,
1422
+ 0.0018824696308001876,
1423
+ 0.026763953268527985,
1424
+ 0.002107292180880904,
1425
+ -0.0003567380481399596,
1426
+ -0.015006068162620068,
1427
+ -0.1144648864865303,
1428
+ -0.024428483098745346,
1429
+ 0.025676751509308815,
1430
+ 0.035971611738204956,
1431
+ -0.034360941499471664,
1432
+ 0.01096597220748663,
1433
+ 0.019784387201070786,
1434
+ 0.030038980767130852,
1435
+ -0.03401196375489235,
1436
+ 0.01704624854028225,
1437
+ 0.020549453794956207,
1438
+ -0.034441474825143814,
1439
+ 0.01289206463843584,
1440
+ -0.016925448551774025,
1441
+ 0.03524681180715561,
1442
+ 0.0005440202658064663,
1443
+ -0.015529535710811615,
1444
+ -0.034199874848127365,
1445
+ 0.007120499853044748,
1446
+ 0.025676751509308815,
1447
+ -0.0036005168221890926,
1448
+ -0.00012405088637024164,
1449
+ 0.0015980858588591218,
1450
+ -0.006227920763194561,
1451
+ -0.002424392616376281,
1452
+ 0.009851926006376743,
1453
+ -0.014012821950018406,
1454
+ 0.00875801406800747,
1455
+ 0.021274255588650703,
1456
+ -0.01720731519162655,
1457
+ 0.0033824052661657333,
1458
+ -0.026374706998467445,
1459
+ 0.001719724852591753,
1460
+ 0.009878771379590034,
1461
+ -0.027676666155457497,
1462
+ 0.010187482461333275,
1463
+ -0.022804390639066696,
1464
+ -0.03607898950576782,
1465
+ 0.025985462591052055,
1466
+ -0.01247597485780716,
1467
+ -0.006509787868708372,
1468
+ 0.013771221041679382,
1469
+ -0.008180857636034489,
1470
+ -0.01022774912416935,
1471
+ -0.014066510833799839,
1472
+ -0.010019704699516296,
1473
+ -0.002424392616376281,
1474
+ 0.012375308200716972,
1475
+ 0.02114003337919712,
1476
+ -0.028320932760834694,
1477
+ -0.023730525746941566,
1478
+ -0.019784387201070786,
1479
+ 0.0053990972228348255,
1480
+ -0.003483072156086564,
1481
+ 0.017529450356960297,
1482
+ 0.009039880707859993,
1483
+ -0.008435879833996296,
1484
+ 0.007120499853044748,
1485
+ -0.02130110003054142,
1486
+ -0.005640697665512562,
1487
+ 0.008355346508324146,
1488
+ 0.040562018752098083,
1489
+ -0.0014798023039475083,
1490
+ 0.027394797652959824,
1491
+ -0.003269993932917714,
1492
+ -0.009073436260223389,
1493
+ -0.023878170177340508,
1494
+ -0.03146173804998398,
1495
+ 0.03852183744311333,
1496
+ -0.009093569591641426,
1497
+ -0.018187139183282852,
1498
+ 0.013670554384589195,
1499
+ -0.008006367832422256,
1500
+ 0.006295031867921352,
1501
+ -0.02323390357196331,
1502
+ 0.005456141661852598,
1503
+ -0.014845000579953194,
1504
+ 0.007248011417686939,
1505
+ 0.010851883329451084,
1506
+ -0.039085570722818375,
1507
+ -0.00636885454878211,
1508
+ -0.02105950005352497,
1509
+ -0.011710907332599163,
1510
+ -0.006768166087567806,
1511
+ 0.023180214688181877,
1512
+ -0.0005821898230351508,
1513
+ -0.002900882391259074,
1514
+ -0.016938870772719383,
1515
+ 0.015408734790980816,
1516
+ -0.008033212274312973,
1517
+ -0.0064527434296905994,
1518
+ -0.017086515203118324,
1519
+ 0.009710992686450481,
1520
+ -0.02301914617419243,
1521
+ -0.0058084758929908276,
1522
+ 0.013422243297100067,
1523
+ 0.005754786543548107,
1524
+ -0.018777718767523766,
1525
+ 0.021475588902831078,
1526
+ 0.005268230568617582,
1527
+ -0.01138877309858799,
1528
+ -0.015663757920265198,
1529
+ -0.05164879187941551,
1530
+ 0.012187397107481956,
1531
+ -0.004768251907080412,
1532
+ -0.006435965653508902,
1533
+ 0.018254250288009644,
1534
+ -0.00914054736495018,
1535
+ 8.331228309543803e-05,
1536
+ -0.01196592953056097,
1537
+ 0.011516284197568893,
1538
+ 0.009892193600535393,
1539
+ -0.005264875013381243,
1540
+ 0.025529107078909874,
1541
+ -0.02858937717974186,
1542
+ -0.015328201465308666,
1543
+ -0.006170876324176788,
1544
+ -0.0024361370597034693,
1545
+ 0.026857908815145493,
1546
+ 0.008274813182651997,
1547
+ 0.019663585349917412,
1548
+ 0.0199722982943058,
1549
+ -0.005436008330434561,
1550
+ -0.0038823839277029037,
1551
+ 0.01203975174576044,
1552
+ 0.029958447441458702,
1553
+ -0.018724029883742332,
1554
+ 0.014804733917117119,
1555
+ -0.020549453794956207,
1556
+ 0.013811487704515457,
1557
+ -0.012368597090244293,
1558
+ -0.005825253669172525,
1559
+ 0.014308110810816288,
1560
+ -0.000771778984926641,
1561
+ -0.017140204086899757,
1562
+ 0.02904573455452919,
1563
+ -0.006905743852257729,
1564
+ -0.02237487956881523,
1565
+ 0.026669997721910477,
1566
+ 0.021515855565667152,
1567
+ 0.020468920469284058,
1568
+ 0.03221338242292404,
1569
+ -0.025918351486325264,
1570
+ -0.02818671055138111,
1571
+ 0.025582795962691307,
1572
+ -0.008013078942894936,
1573
+ -0.02556937374174595,
1574
+ 0.011348506435751915,
1575
+ -0.018992474302649498,
1576
+ 0.021650077775120735,
1577
+ 0.03261604905128479,
1578
+ 0.0011333406437188387,
1579
+ 0.011690774001181126,
1580
+ 0.008234546519815922,
1581
+ 0.0018908585188910365,
1582
+ -0.027300842106342316,
1583
+ 0.012986020185053349,
1584
+ -0.006825210526585579,
1585
+ 0.0066809216514229774,
1586
+ 0.016750959679484367,
1587
+ -0.013368554413318634,
1588
+ -0.011952507309615612,
1589
+ 0.019583052024245262,
1590
+ 0.04276326671242714,
1591
+ 0.008804991841316223,
1592
+ -0.009113702923059464,
1593
+ -0.015100023709237576,
1594
+ -0.006214498542249203,
1595
+ -0.022978879511356354,
1596
+ 0.012496108189225197,
1597
+ 0.006348721217364073,
1598
+ -0.014697356149554253,
1599
+ -0.02105950005352497,
1600
+ -0.009013036265969276,
1601
+ 0.0085633909329772,
1602
+ -0.005660830996930599,
1603
+ -0.001337190973572433,
1604
+ -0.0035568943712860346,
1605
+ -0.0073553891852498055,
1606
+ -0.004446118138730526,
1607
+ -0.027864577248692513,
1608
+ 0.007341966964304447,
1609
+ 0.0062782540917396545,
1610
+ 0.024683505296707153,
1611
+ -0.025730440393090248,
1612
+ 0.019636740908026695,
1613
+ 0.0023941926192492247,
1614
+ 0.01975754275918007,
1615
+ -0.036213211715221405,
1616
+ 0.013811487704515457,
1617
+ 0.018240828067064285,
1618
+ 0.0004668423789553344,
1619
+ -0.008945925161242485,
1620
+ 0.026589464396238327,
1621
+ 0.014428911730647087,
1622
+ 0.009791526012122631,
1623
+ -0.009831792674958706,
1624
+ 0.030736936256289482,
1625
+ -0.009046591818332672,
1626
+ 0.011590107344090939,
1627
+ 0.03454885259270668,
1628
+ 0.006140676327049732,
1629
+ 0.004560207016766071,
1630
+ 0.010455927811563015,
1631
+ 0.01782473921775818,
1632
+ -0.018791140988469124,
1633
+ -0.022106435149908066,
1634
+ 0.0024646592792123556,
1635
+ -0.0074090780690312386,
1636
+ -0.014912111684679985,
1637
+ -0.042870644479990005,
1638
+ 0.00790570117533207,
1639
+ -0.00012132449774071574,
1640
+ 0.00398640614002943,
1641
+ -0.016844915226101875,
1642
+ 0.013462509959936142,
1643
+ -0.010939127765595913,
1644
+ -0.011301528662443161,
1645
+ 0.004912540782243013,
1646
+ -0.027622975409030914,
1647
+ -0.048212695866823196,
1648
+ 0.01499264594167471,
1649
+ 0.021341366693377495,
1650
+ 0.012771264649927616,
1651
+ 0.01743549294769764,
1652
+ -0.017448915168642998,
1653
+ 0.008992902934551239,
1654
+ 0.024670083075761795,
1655
+ 0.027864577248692513,
1656
+ -0.013247753493487835,
1657
+ 0.03245498239994049,
1658
+ -0.0032767050433903933,
1659
+ 0.029153112322092056,
1660
+ -0.004828651901334524,
1661
+ -0.021005811169743538,
1662
+ -0.006841988302767277,
1663
+ -0.0014034633059054613,
1664
+ -0.009073436260223389,
1665
+ 0.017932116985321045,
1666
+ 0.02115345560014248,
1667
+ -0.01289206463843584,
1668
+ 0.06490996479988098,
1669
+ 0.0003200366045348346,
1670
+ -0.005358830559998751,
1671
+ 0.011455884203314781,
1672
+ -0.02555595152080059,
1673
+ 0.02377079240977764,
1674
+ 0.017005981877446175,
1675
+ 0.009972726926207542,
1676
+ -0.03454885259270668,
1677
+ -0.015583224594593048,
1678
+ 0.01107335090637207,
1679
+ -0.015086601488292217,
1680
+ -0.0018438806291669607,
1681
+ -0.016482515260577202,
1682
+ -0.03513943403959274,
1683
+ 0.006187654100358486,
1684
+ -0.011348506435751915,
1685
+ 0.017690517008304596,
1686
+ -0.005784987006336451,
1687
+ 0.0006857927073724568,
1688
+ 0.04687047377228737,
1689
+ -0.00825467985123396,
1690
+ 0.037286993116140366,
1691
+ 0.002941149054095149,
1692
+ -0.02006625384092331,
1693
+ -0.0027767266146838665,
1694
+ -0.0048722741194069386,
1695
+ -0.011590107344090939,
1696
+ 0.0022482257336378098,
1697
+ -6.857927655801177e-05,
1698
+ 0.00557694211602211,
1699
+ -0.005392386112362146,
1700
+ -0.02069709822535515,
1701
+ -0.01904616318643093,
1702
+ -0.00999286025762558,
1703
+ -0.0029830934945493937,
1704
+ 0.00019598571816459298,
1705
+ -0.0171267818659544,
1706
+ 0.004583695903420448,
1707
+ 0.02534119412302971,
1708
+ 0.012086729519069195,
1709
+ 0.010697527788579464,
1710
+ -0.028830979019403458,
1711
+ -0.0014496023068204522,
1712
+ 0.02224065735936165,
1713
+ 0.01781131699681282,
1714
+ -0.03382405266165733,
1715
+ -0.010623705573379993,
1716
+ -0.025193549692630768,
1717
+ ],
1718
+ distance=0.7,
1719
+ limit=2,
1720
+ )
1721
+
1722
+ for each_obj in response.objects:
1723
+ print(each_obj.properties)
1724
+
1725
+ finally:
1726
+ client.close() # Close client gracefully
1727
+
1728
+
1729
+ # create()
1730
+ # insert()
1731
+ # query_data_bm25()
1732
+ # query_fetch_object_by_id()
1733
+ # query_fetch_objects()
1734
+ # query_hybrid()
1735
+ # query_near_object()
1736
+ # query_data_near_text()
1737
+ # query_data_near_vector()