-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchroma.log
4802 lines (4786 loc) · 483 KB
/
chroma.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mWARNING[0m: [01-05-2024 04:21:20] chroma_server_nofile is set to 65535, but this is less than current soft limit of 1048575. chroma_server_nofile will not be set.
[32mINFO[0m: [01-05-2024 04:21:20] Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information.
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component System
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component OpenTelemetryClient
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component SqliteDB
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component Posthog
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 04:21:20] Starting component SegmentAPI
[32mINFO[0m: [01-05-2024 04:21:20] Started server process [[36m41517[0m]
[32mINFO[0m: [01-05-2024 04:21:20] Waiting for application startup.
[32mINFO[0m: [01-05-2024 04:21:20] Application startup complete.
[32mINFO[0m: [01-05-2024 04:21:20] Uvicorn running on [1mhttp://localhost:8000[0m (Press CTRL+C to quit)
[32mINFO[0m: [01-05-2024 04:21:37] Shutting down
[32mINFO[0m: [01-05-2024 04:21:38] Waiting for application shutdown.
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component System
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component SegmentAPI
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component Posthog
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component SqliteDB
[36mDEBUG[0m: [01-05-2024 04:21:38] Stopping component OpenTelemetryClient
[32mINFO[0m: [01-05-2024 04:21:38] Application shutdown complete.
[32mINFO[0m: [01-05-2024 04:21:38] Finished server process [[36m41517[0m]
[33mWARNING[0m: [01-05-2024 12:41:52] chroma_server_nofile is set to 65535, but this is less than current soft limit of 1048575. chroma_server_nofile will not be set.
[32mINFO[0m: [01-05-2024 12:41:52] Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information.
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component System
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component OpenTelemetryClient
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component SqliteDB
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component Posthog
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 12:41:52] Starting component SegmentAPI
[32mINFO[0m: [01-05-2024 12:41:52] Started server process [[36m52801[0m]
[32mINFO[0m: [01-05-2024 12:41:52] Waiting for application startup.
[32mINFO[0m: [01-05-2024 12:41:52] Application startup complete.
[32mINFO[0m: [01-05-2024 12:41:52] Uvicorn running on [1mhttp://localhost:8000[0m (Press CTRL+C to quit)
[32mINFO[0m: [01-05-2024 12:41:56] Shutting down
[32mINFO[0m: [01-05-2024 12:41:56] Waiting for application shutdown.
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component System
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component SegmentAPI
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component Posthog
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component SqliteDB
[36mDEBUG[0m: [01-05-2024 12:41:56] Stopping component OpenTelemetryClient
[32mINFO[0m: [01-05-2024 12:41:56] Application shutdown complete.
[32mINFO[0m: [01-05-2024 12:41:56] Finished server process [[36m52801[0m]
[33mWARNING[0m: [01-05-2024 12:42:15] chroma_server_nofile is set to 65535, but this is less than current soft limit of 1048575. chroma_server_nofile will not be set.
[32mINFO[0m: [01-05-2024 12:42:15] Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information.
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component System
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component OpenTelemetryClient
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component SqliteDB
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component Posthog
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 12:42:15] Starting component SegmentAPI
[32mINFO[0m: [01-05-2024 12:42:15] Started server process [[36m52854[0m]
[32mINFO[0m: [01-05-2024 12:42:15] Waiting for application startup.
[32mINFO[0m: [01-05-2024 12:42:15] Application startup complete.
[32mINFO[0m: [01-05-2024 12:42:15] Uvicorn running on [1mhttp://localhost:3030[0m (Press CTRL+C to quit)
[31mERROR[0m: [01-05-2024 12:42:23] Collection 486ec1c8-9aea-4c18-89ab-36361fb02048 already exists
Traceback (most recent call last):
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/db/mixins/sysdb.py", line 258, in create_collection
cur.execute(sql, params)
sqlite3.IntegrityError: UNIQUE constraint failed: collections.name, collections.database_id
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/server/fastapi/__init__.py", line 78, in catch_exceptions_middleware
return await call_next(request)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/base.py", line 165, in call_next
raise app_exc
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/base.py", line 151, in coro
await self.app(scope, receive_or_disconnect, send_no_error)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/base.py", line 189, in __call__
with collapse_excgroups():
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/contextlib.py", line 158, in __exit__
self.gen.throw(value)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/_utils.py", line 93, in collapse_excgroups
raise exc
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/base.py", line 191, in __call__
response = await self.dispatch_func(request, call_next)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/server/fastapi/__init__.py", line 92, in check_http_version_middleware
return await call_next(request)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/base.py", line 165, in call_next
raise app_exc
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/base.py", line 151, in coro
await self.app(scope, receive_or_disconnect, send_no_error)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/middleware/exceptions.py", line 65, in __call__
await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app
raise exc
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
await app(scope, receive, sender)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 756, in __call__
await self.middleware_stack(scope, receive, send)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 776, in app
await route.handle(scope, receive, send)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 297, in handle
await self.app(scope, receive, send)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 77, in app
await wrap_app_handling_exceptions(app, request)(scope, receive, send)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/_exception_handler.py", line 64, in wrapped_app
raise exc
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
await app(scope, receive, sender)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 72, in app
response = await func(request)
^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/fastapi/routing.py", line 278, in app
raw_response = await run_endpoint_function(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/fastapi/routing.py", line 191, in run_endpoint_function
return await dependant.call(**values)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/telemetry/opentelemetry/__init__.py", line 130, in wrapper
return await f(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/server/fastapi/__init__.py", line 630, in create_collection
await to_thread.run_sync(
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/anyio/to_thread.py", line 56, in run_sync
return await get_async_backend().run_sync_in_worker_thread(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/anyio/_backends/_asyncio.py", line 2144, in run_sync_in_worker_thread
return await future
^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/anyio/_backends/_asyncio.py", line 851, in run
result = context.run(func, *args)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/server/fastapi/__init__.py", line 620, in process_create_collection
return self._api.create_collection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/telemetry/opentelemetry/__init__.py", line 143, in wrapper
return f(*args, **kwargs)
^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/api/segment.py", line 173, in create_collection
coll, created = self._sysdb.create_collection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/telemetry/opentelemetry/__init__.py", line 143, in wrapper
return f(*args, **kwargs)
^^^^^^^^^^^^^^^^^^
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/chromadb/db/mixins/sysdb.py", line 260, in create_collection
raise UniqueConstraintError(
chromadb.db.base.UniqueConstraintError: Collection 486ec1c8-9aea-4c18-89ab-36361fb02048 already exists
[32mINFO[0m: [01-05-2024 12:42:23] ::1:64082 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 500
[32mINFO[0m: [01-05-2024 12:42:23] ::1:64083 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[36mDEBUG[0m: [01-05-2024 12:42:24] Starting component PersistentLocalHnswSegment
[32mINFO[0m: [01-05-2024 12:42:24] ::1:64082 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:20] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:20] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:20] ::1:64160 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:20] ::1:64161 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:21] ::1:64160 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:21] ::1:64160 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:26] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:26] ::1:64178 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:26] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:26] ::1:64179 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:26] ::1:64178 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:26] ::1:64179 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:45] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:45] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:45] ::1:64200 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:45] ::1:64201 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:45] ::1:64200 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:45] ::1:64201 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:47] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:47] ::1:64200 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:47] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:45:47] ::1:64201 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:47] ::1:64200 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:45:47] ::1:64201 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:46:13] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:46:13] ::1:64219 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:46:14] ::1:64219 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:46:47] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:46:47] ::1:64249 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:46:48] ::1:64249 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:47:19] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:47:19] ::1:64278 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:47:19] ::1:64278 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:47:43] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:47:43] ::1:64302 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:47:43] ::1:64302 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:47:52] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:47:52] ::1:64309 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:47:52] ::1:64309 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[33mWARNING[0m: [01-05-2024 12:57:29] chroma_server_nofile is set to 65535, but this is less than current soft limit of 1048575. chroma_server_nofile will not be set.
[32mINFO[0m: [01-05-2024 12:57:29] Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information.
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component System
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component OpenTelemetryClient
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component SqliteDB
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component Posthog
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 12:57:29] Starting component SegmentAPI
[32mINFO[0m: [01-05-2024 12:57:29] Started server process [[36m54840[0m]
[32mINFO[0m: [01-05-2024 12:57:29] Waiting for application startup.
[32mINFO[0m: [01-05-2024 12:57:29] Application startup complete.
[32mINFO[0m: [01-05-2024 12:57:29] Uvicorn running on [1mhttp://localhost:3030[0m (Press CTRL+C to quit)
[32mINFO[0m: [01-05-2024 12:57:32] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 12:57:32] ::1:64652 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[36mDEBUG[0m: [01-05-2024 12:57:45] Starting component PersistentLocalHnswSegment
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64679 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64687 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64696 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64672 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64697 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64698 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64674 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64701 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64685 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64686 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64658 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64703 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64706 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64707 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64708 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64709 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64710 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64711 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64712 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64689 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64714 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64715 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64716 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64705 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64717 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64718 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64719 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64720 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64721 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64723 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64724 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64725 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64726 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64727 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64691 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64728 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64730 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64731 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64732 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64663 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64734 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64735 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64729 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64736 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64737 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64682 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64740 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64664 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64741 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64742 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64744 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64745 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64746 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64747 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64748 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64749 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64750 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64751 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64752 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64753 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64754 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64755 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64756 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64757 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64758 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64759 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64760 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64761 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64704 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64763 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64764 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64765 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64766 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64767 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64768 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64769 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64743 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64771 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64772 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64773 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64774 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64775 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64776 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64777 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64778 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64699 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64779 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64781 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64782 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64783 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64784 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64785 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64786 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64780 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64661 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64660 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64733 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64667 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64670 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64671 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64688 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64739 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64669 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64690 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64692 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64695 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64693 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64713 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64770 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64762 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64700 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64655 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64675 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64659 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64662 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64681 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64657 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64665 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64677 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64684 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64694 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64668 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64722 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64702 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64738 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64678 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:45] ::1:64683 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:46] ::1:64676 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:46] ::1:64656 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:46] ::1:64673 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:46] ::1:64666 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:46] ::1:64680 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 12:57:46] ::1:64652 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 12:59:25] Shutting down
[32mINFO[0m: [01-05-2024 12:59:25] Finished server process [[36m54840[0m]
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component System
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component SegmentAPI
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component PersistentLocalHnswSegment
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component Posthog
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component SqliteDB
[36mDEBUG[0m: [01-05-2024 12:59:25] Stopping component OpenTelemetryClient
[31mERROR[0m: [01-05-2024 12:59:25] Traceback (most recent call last):
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 194, in run
return runner.run(main)
^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 118, in run
return self._loop.run_until_complete(task)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "uvloop/loop.pyx", line 1511, in uvloop.loop.Loop.run_until_complete
File "uvloop/loop.pyx", line 1504, in uvloop.loop.Loop.run_until_complete
File "uvloop/loop.pyx", line 1377, in uvloop.loop.Loop.run_forever
File "uvloop/loop.pyx", line 555, in uvloop.loop.Loop._run
File "uvloop/loop.pyx", line 474, in uvloop.loop.Loop._on_idle
File "uvloop/cbhandles.pyx", line 83, in uvloop.loop.Handle._run
File "uvloop/cbhandles.pyx", line 63, in uvloop.loop.Handle._run
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/uvicorn/server.py", line 68, in serve
with self.capture_signals():
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/contextlib.py", line 144, in __exit__
next(self.gen)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/uvicorn/server.py", line 328, in capture_signals
signal.raise_signal(captured_signal)
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 157, in _on_sigint
raise KeyboardInterrupt()
KeyboardInterrupt
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 741, in lifespan
await receive()
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/uvicorn/lifespan/on.py", line 137, in receive
return await self.receive_queue.get()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/queues.py", line 158, in get
await getter
asyncio.exceptions.CancelledError
[33mWARNING[0m: [01-05-2024 13:00:56] chroma_server_nofile is set to 65535, but this is less than current soft limit of 1048575. chroma_server_nofile will not be set.
[32mINFO[0m: [01-05-2024 13:00:56] Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information.
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component System
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component OpenTelemetryClient
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component SqliteDB
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component Posthog
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 13:00:56] Starting component SegmentAPI
[32mINFO[0m: [01-05-2024 13:00:56] Started server process [[36m54972[0m]
[32mINFO[0m: [01-05-2024 13:00:56] Waiting for application startup.
[32mINFO[0m: [01-05-2024 13:00:56] Application startup complete.
[32mINFO[0m: [01-05-2024 13:00:56] Uvicorn running on [1mhttp://localhost:3030[0m (Press CTRL+C to quit)
[32mINFO[0m: [01-05-2024 13:00:59] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 13:00:59] ::1:64890 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[36mDEBUG[0m: [01-05-2024 13:01:13] Starting component PersistentLocalHnswSegment
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0000859.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0000859.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0087404.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64897 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0087404.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0000428.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0000428.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64916 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0199841.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0199841.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64896 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0115218.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0115218.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64935 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64923 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0237597.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0237597.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64937 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0003124.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0003124.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64908 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0267638.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0267638.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64939 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0268125.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0268125.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64941 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0281808.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0281808.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64942 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0153713.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0153713.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64925 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0279038.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0279038.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0292433.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64943 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0292433.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64944 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0285643.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0285643.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64945 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0292810.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0292810.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64947 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0316993.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0316993.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0321088.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64946 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0321088.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64948 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0316995.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0316995.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64949 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0335788.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0335788.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64951 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0366008.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0366008.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64952 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0249379.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0249379.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64936 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0182537.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0182537.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64930 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0363227.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0363227.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0366586.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64950 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0366586.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64954 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0045800.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0045800.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0382730.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64911 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0382730.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64957 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0380965.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0380965.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64958 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0382954.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0382954.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64959 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0421041.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0421041.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0392442.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64961 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0392442.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64960 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0000122.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0000122.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64894 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0427659.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0427659.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64964 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0431433.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0431433.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64963 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0431484.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0431484.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64966 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0464137.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0464137.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64967 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0466773.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0466773.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64968 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0470328.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0470328.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0448987.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64969 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0448987.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64965 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0484439.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0484439.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64971 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0167760.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0167760.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64927 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0502752.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0502752.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0511104.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64972 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0511104.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64973 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0515979.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0515979.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64975 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002161.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002161.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64905 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0523932.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0523932.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64977 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0531759.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0531759.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64978 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0106785.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0106785.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64919 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0531584.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0531584.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64979 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0550615.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0550615.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64981 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0567756.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0567756.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64982 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0553184.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0553184.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64983 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0591704.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0591704.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64984 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0571186.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0571186.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64985 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0601698.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0601698.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64986 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0594291.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0594291.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64987 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0603875.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0603875.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64988 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0602905.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0602905.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64989 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0651627.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0651627.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64990 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0632160.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0632160.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64991 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0659947.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0659947.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64992 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0657874.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0657874.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64993 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0098376.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0098376.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64917 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0680368.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0680368.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64994 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0663860.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0663860.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64995 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0681933.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0681933.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64997 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0701012.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0701012.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64998 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0706926.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0706926.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64999 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0728230.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0728230.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65000 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0124279.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0124279.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64922 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0792514.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0792514.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65002 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0784407.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0784407.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0370564.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65003 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0370564.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64955 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0807580.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0807580.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65005 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0820607.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0820607.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65006 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0829171.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0829171.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65007 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0838843.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0838843.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65008 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0107574.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0107574.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0841797.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0841797.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64921 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65009 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0842239.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0842239.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65011 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0864931.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0864931.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65012 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0875983.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0875983.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65013 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0891238.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0891238.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65014 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0878035.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0878035.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65015 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0909825.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0909825.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65016 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0910400.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0910400.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65017 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0916665.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0916665.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65018 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0912478.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0912478.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65019 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0925118.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0925118.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65020 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0917467.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0917467.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65021 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0928108.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0928108.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0717468.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65022 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0717468.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65001 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0926599.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0926599.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0930290.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65023 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0930290.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65024 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0949403.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0949403.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65025 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0398446.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0398446.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64962 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0524306.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0524306.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64976 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0806565.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0806565.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65004 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0681927.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0681927.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64996 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0551222.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0551222.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64980 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0199087.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0199087.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64934 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0848232.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0848232.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:65010 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0478359.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0478359.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64970 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0001316.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0001316.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64901 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0187981.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0187981.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64932 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0516001.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0516001.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64974 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0000406.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0000406.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64895 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002031.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002031.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64902 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002311.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002311.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64906 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002233.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002233.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64907 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0267916.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0267916.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64938 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0071992.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0071992.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64912 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002935.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002935.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64909 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0103567.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0103567.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64920 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0078116.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0078116.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64915 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0076800.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0076800.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64914 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0000891.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0000891.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64899 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0176699.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0176699.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64929 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0178270.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0178270.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64931 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0365121.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0365121.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64953 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002118.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002118.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64904 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0002001.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0002001.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64903 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0000847.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0000847.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64898 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0269771.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0269771.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64940 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0376396.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0376396.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64956 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0190516.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0190516.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64933 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0003425.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0003425.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64910 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0092290.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0092290.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64918 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0165744.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0165744.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64924 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0001366.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0001366.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64900 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0174682.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0174682.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64928 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0069373.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0069373.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64913 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[33mWARNING[0m: [01-05-2024 13:01:13] Insert of existing embedding ID: nm0173993.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:13] Add of existing embedding ID: nm0173993.jpg-1
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64926 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/add HTTP/1.1" 201
[32mINFO[0m: [01-05-2024 13:01:13] ::1:64890 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 13:01:23] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 13:01:23] ::1:65034 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 13:01:24] ::1:65034 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 13:01:26] Shutting down
[32mINFO[0m: [01-05-2024 13:01:26] Finished server process [[36m54972[0m]
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component System
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component SegmentAPI
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component PersistentLocalHnswSegment
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component Posthog
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component SqliteDB
[36mDEBUG[0m: [01-05-2024 13:01:26] Stopping component OpenTelemetryClient
[31mERROR[0m: [01-05-2024 13:01:26] Traceback (most recent call last):
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 194, in run
return runner.run(main)
^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 118, in run
return self._loop.run_until_complete(task)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "uvloop/loop.pyx", line 1511, in uvloop.loop.Loop.run_until_complete
File "uvloop/loop.pyx", line 1504, in uvloop.loop.Loop.run_until_complete
File "uvloop/loop.pyx", line 1377, in uvloop.loop.Loop.run_forever
File "uvloop/loop.pyx", line 555, in uvloop.loop.Loop._run
File "uvloop/loop.pyx", line 474, in uvloop.loop.Loop._on_idle
File "uvloop/cbhandles.pyx", line 83, in uvloop.loop.Handle._run
File "uvloop/cbhandles.pyx", line 63, in uvloop.loop.Handle._run
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/uvicorn/server.py", line 68, in serve
with self.capture_signals():
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/contextlib.py", line 144, in __exit__
next(self.gen)
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/uvicorn/server.py", line 328, in capture_signals
signal.raise_signal(captured_signal)
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/runners.py", line 157, in _on_sigint
raise KeyboardInterrupt()
KeyboardInterrupt
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/starlette/routing.py", line 741, in lifespan
await receive()
File "/Users/bachtran/.local/share/virtualenvs/project-bhbk-crnb_ebU/lib/python3.12/site-packages/uvicorn/lifespan/on.py", line 137, in receive
return await self.receive_queue.get()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.12/3.12.3/Frameworks/Python.framework/Versions/3.12/lib/python3.12/asyncio/queues.py", line 158, in get
await getter
asyncio.exceptions.CancelledError
[33mWARNING[0m: [01-05-2024 13:01:28] chroma_server_nofile is set to 65535, but this is less than current soft limit of 1048575. chroma_server_nofile will not be set.
[32mINFO[0m: [01-05-2024 13:01:28] Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information.
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component System
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component OpenTelemetryClient
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component SqliteDB
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component QuotaEnforcer
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component Posthog
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component LocalSegmentManager
[36mDEBUG[0m: [01-05-2024 13:01:28] Starting component SegmentAPI
[32mINFO[0m: [01-05-2024 13:01:28] Started server process [[36m55072[0m]
[32mINFO[0m: [01-05-2024 13:01:28] Waiting for application startup.
[32mINFO[0m: [01-05-2024 13:01:28] Application startup complete.
[32mINFO[0m: [01-05-2024 13:01:28] Uvicorn running on [1mhttp://localhost:3030[0m (Press CTRL+C to quit)
[32mINFO[0m: [01-05-2024 13:01:31] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 13:01:31] ::1:65043 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200
[36mDEBUG[0m: [01-05-2024 13:01:32] Starting component PersistentLocalHnswSegment
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0000859.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0087404.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0000428.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0199841.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0115218.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0237597.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0003124.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0267638.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0268125.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0281808.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0153713.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0279038.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0292433.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0285643.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0292810.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0316993.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0321088.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0316995.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0335788.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0366008.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0249379.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0182537.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0363227.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0366586.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0045800.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0382730.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0380965.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0382954.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0421041.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0392442.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0000122.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0427659.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0431433.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0431484.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0464137.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0466773.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0470328.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0448987.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0484439.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0167760.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0502752.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0511104.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0515979.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002161.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0523932.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0531759.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0106785.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0531584.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0550615.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0567756.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0553184.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0591704.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0571186.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0601698.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0594291.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0603875.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0602905.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0651627.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0632160.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0659947.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0657874.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0098376.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0680368.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0663860.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0681933.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0701012.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0706926.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0728230.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0124279.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0792514.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0784407.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0370564.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0807580.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0820607.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0829171.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0838843.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0107574.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0841797.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0842239.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0864931.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0875983.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0891238.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0878035.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0909825.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0910400.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0916665.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0912478.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0925118.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0917467.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0928108.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0717468.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0926599.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0930290.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0949403.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0398446.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0524306.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0806565.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0681927.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0551222.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0199087.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0848232.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0478359.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0001316.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0187981.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0516001.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0000406.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002031.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002311.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002233.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0267916.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0071992.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002935.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0103567.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0078116.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0076800.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0000891.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0176699.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0178270.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0365121.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002118.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0002001.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0000847.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0269771.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0376396.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0190516.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0003425.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0092290.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0165744.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0001366.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0174682.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0069373.jpg-1
[33mWARNING[0m: [01-05-2024 13:01:32] Add of existing embedding ID: nm0173993.jpg-1
[32mINFO[0m: [01-05-2024 13:01:32] ::1:65043 - "POST /api/v1/collections/98743b28-fc33-4416-9887-c866e7f6ccd3/query HTTP/1.1" 200
[32mINFO[0m: [01-05-2024 13:01:33] Collection face-api is not created.
[32mINFO[0m: [01-05-2024 13:01:33] ::1:65043 - "POST /api/v1/collections?tenant=default_tenant&database=default_database HTTP/1.1" 200