langtrace-python-sdk 2.1.16__py3-none-any.whl → 2.1.19__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. examples/inspect_ai_example/basic_eval.py +24 -0
  2. examples/langchain_example/basic.py +23 -8
  3. examples/llamaindex_example/agent.py +1 -1
  4. examples/llamaindex_example/basic.py +5 -1
  5. examples/ollama_example/__init__.py +14 -0
  6. examples/ollama_example/basic.py +50 -0
  7. examples/openai_example/chat_completion.py +1 -1
  8. examples/pinecone_example/basic.py +1 -0
  9. langtrace_python_sdk/__init__.py +4 -5
  10. langtrace_python_sdk/constants/instrumentation/common.py +1 -0
  11. langtrace_python_sdk/constants/instrumentation/ollama.py +7 -0
  12. langtrace_python_sdk/constants/instrumentation/pinecone.py +1 -1
  13. langtrace_python_sdk/extensions/langtrace_filesystem.py +194 -0
  14. langtrace_python_sdk/instrumentation/__init__.py +2 -0
  15. langtrace_python_sdk/instrumentation/chroma/patch.py +7 -3
  16. langtrace_python_sdk/instrumentation/groq/patch.py +5 -2
  17. langtrace_python_sdk/instrumentation/langchain/patch.py +8 -2
  18. langtrace_python_sdk/instrumentation/langchain_community/patch.py +8 -2
  19. langtrace_python_sdk/instrumentation/langchain_core/patch.py +13 -3
  20. langtrace_python_sdk/instrumentation/langgraph/patch.py +7 -2
  21. langtrace_python_sdk/instrumentation/llamaindex/patch.py +7 -3
  22. langtrace_python_sdk/instrumentation/ollama/__init__.py +3 -0
  23. langtrace_python_sdk/instrumentation/ollama/instrumentation.py +58 -0
  24. langtrace_python_sdk/instrumentation/ollama/patch.py +215 -0
  25. langtrace_python_sdk/instrumentation/openai/patch.py +20 -8
  26. langtrace_python_sdk/instrumentation/pinecone/instrumentation.py +0 -1
  27. langtrace_python_sdk/instrumentation/pinecone/patch.py +7 -3
  28. langtrace_python_sdk/instrumentation/qdrant/patch.py +7 -2
  29. langtrace_python_sdk/instrumentation/weaviate/patch.py +7 -3
  30. langtrace_python_sdk/langtrace.py +14 -2
  31. langtrace_python_sdk/types/__init__.py +77 -1
  32. langtrace_python_sdk/utils/langtrace_sampler.py +56 -0
  33. langtrace_python_sdk/utils/with_root_span.py +11 -2
  34. langtrace_python_sdk/version.py +1 -1
  35. {langtrace_python_sdk-2.1.16.dist-info → langtrace_python_sdk-2.1.19.dist-info}/METADATA +3 -1
  36. {langtrace_python_sdk-2.1.16.dist-info → langtrace_python_sdk-2.1.19.dist-info}/RECORD +39 -29
  37. langtrace_python_sdk-2.1.19.dist-info/entry_points.txt +2 -0
  38. {langtrace_python_sdk-2.1.16.dist-info → langtrace_python_sdk-2.1.19.dist-info}/WHEEL +0 -0
  39. {langtrace_python_sdk-2.1.16.dist-info → langtrace_python_sdk-2.1.19.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: langtrace-python-sdk
3
- Version: 2.1.16
3
+ Version: 2.1.19
4
4
  Summary: Python SDK for LangTrace
5
5
  Project-URL: Homepage, https://github.com/Scale3-Labs/langtrace-python-sdk
6
6
  Author-email: Scale3 Labs <engineering@scale3labs.com>
@@ -11,6 +11,7 @@ Classifier: Operating System :: OS Independent
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.9
13
13
  Requires-Dist: colorama>=0.4.6
14
+ Requires-Dist: fsspec>=2024.6.0
14
15
  Requires-Dist: opentelemetry-api>=1.25.0
15
16
  Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.25.0
16
17
  Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.25.0
@@ -27,6 +28,7 @@ Requires-Dist: cohere; extra == 'dev'
27
28
  Requires-Dist: langchain; extra == 'dev'
28
29
  Requires-Dist: langchain-community; extra == 'dev'
29
30
  Requires-Dist: langchain-openai; extra == 'dev'
31
+ Requires-Dist: ollama; extra == 'dev'
30
32
  Requires-Dist: openai; extra == 'dev'
31
33
  Requires-Dist: pinecone-client; extra == 'dev'
32
34
  Requires-Dist: python-dotenv; extra == 'dev'
@@ -12,19 +12,22 @@ examples/cohere_example/tools.py,sha256=a5uvS058tcwU6PJbF9EDO6LPVmPj2LoW4Vn8Web3
12
12
  examples/fastapi_example/__init__.py,sha256=INIfvJP7zC_KkJCtulS1qbh61-MJTPAHnzAgzeKi0yU,87
13
13
  examples/fastapi_example/basic_route.py,sha256=_IRXjkOtJQ-bTIGa1WbvUF_2LF4bjghjyXt4YrHaRvw,1170
14
14
  examples/hiveagent_example/basic.py,sha256=Sd7I5w8w5Xx7ODaydTY30yiq9HwJDMKHQywrZjgehP0,441
15
+ examples/inspect_ai_example/basic_eval.py,sha256=dUbF4yicNSG8HWxAfzS3V-813bpLyfb7Zdgo544yqGc,802
15
16
  examples/langchain_example/__init__.py,sha256=t28923ZDDejZabsvINnYwpLyb63WFwPde-Nmzdg-kH4,254
16
- examples/langchain_example/basic.py,sha256=8ppNBptB0x3vjD5wUF5qP7ghp1vk-OJBBKk-PJPVD5I,2504
17
+ examples/langchain_example/basic.py,sha256=hrwMHOUv78-su5DP9i5krkQnMGHq0svEXsBa40Jkggg,2981
17
18
  examples/langchain_example/groq_example.py,sha256=9dBbOWZCVJ29PpB1NbJhc9MThmtwrlOpdNIxPl7d8f8,787
18
19
  examples/langchain_example/langgraph_example.py,sha256=7C2a4Sg0PKbbab03CVkStO3MzT7C-O1UtdmObvBXurM,2005
19
20
  examples/langchain_example/tool.py,sha256=8T8_IDbgA58XbsfyH5_xhA8ZKQfyfyFxF8wor-PsRjA,2556
20
21
  examples/llamaindex_example/__init__.py,sha256=4w8Hz5pfmMzhkHAbBim6jwxHxMicaN4xi1Of9pODO8g,252
21
- examples/llamaindex_example/agent.py,sha256=AukhBJwPC5_KFYQrDbEE00c-_6Yt2SCPZHii5B3mh-o,2795
22
- examples/llamaindex_example/basic.py,sha256=bDp2TlnfzviS9wi6ox-vfPo3e79QuStHD0sJJQXr_w0,656
22
+ examples/llamaindex_example/agent.py,sha256=JNK6xDX17HOFRShBK7a71HPWD05LwzPES9YVyl_azIQ,2767
23
+ examples/llamaindex_example/basic.py,sha256=aFZngkye95sjUr4wc2Uo_Je0iEexXpNcdlV0BTv_F4g,726
23
24
  examples/llamaindex_example/data/abramov.txt,sha256=Ou-GyWZm5AjHLgxviBoRE9ikNv5MScsF0cd--0vVVhI,32667
25
+ examples/ollama_example/__init__.py,sha256=qOx0jGCPuSpRCPiqtDVm7F0z8hIZ8C75hDZ_C8Apz-s,399
26
+ examples/ollama_example/basic.py,sha256=nfS-dfHMC99XyjP5COa-eLH1BLxFqjkPsPhMQ7sokZA,1024
24
27
  examples/openai_example/__init__.py,sha256=6l2FePb3vYBJVwIT4qfdtOLobKLZ6iO16Fe31TUwNz8,827
25
28
  examples/openai_example/async_tool_calling_nonstreaming.py,sha256=FhbDX91RLhTrNd5IGPI0CxRdCjTRcNLlWkYdLqHGbVs,3838
26
29
  examples/openai_example/async_tool_calling_streaming.py,sha256=LaSKmn_Unv55eTHXYdEmKjo39eNuB3ASOBV-m8U1HfU,7136
27
- examples/openai_example/chat_completion.py,sha256=AzA1IykhNHYu9fp-e41EEh4GudksdtJfLPpXP7odvLg,1191
30
+ examples/openai_example/chat_completion.py,sha256=unQK7IYH_wmAtIVZNJ5kC0qywXR00ZnXl5xtcCu7JX8,1193
28
31
  examples/openai_example/embeddings_create.py,sha256=sqz-zh3pEaB17gVYeY0QE76QxRwsmo6wV8yjAfg1ljg,522
29
32
  examples/openai_example/function_calling.py,sha256=zz-JdCcpP7uCXG21EYXF1Y39IKj6gYt2fOP5N_ywpnc,2338
30
33
  examples/openai_example/images_edit.py,sha256=0hG5OYTSUBrcwSxbqN67brPYjf1pRJs8vqGzu-UjK6c,887
@@ -36,77 +39,83 @@ examples/openai_example/resources/lounge_flamingo.png,sha256=aspniTtmWqwLp3YUhYq
36
39
  examples/openai_example/resources/mask.png,sha256=mUE9Dfp-x8jI0Nh4WGr0P9pueUqEZfpjwxR-6Rxzxz4,2483660
37
40
  examples/perplexity_example/basic.py,sha256=bp7n27gaugJkaFVyt8pjaEfi66lYcqP6eFFjPewUShY,668
38
41
  examples/pinecone_example/__init__.py,sha256=_rvn7Ygt_QWMQoa5wB2GB0S9gZVrlJrPrEhXqU3hPKw,427
39
- examples/pinecone_example/basic.py,sha256=258a5EGyLXLCu_xnLl4iROhNjUrYULwnKS3wxTlZhFs,1486
42
+ examples/pinecone_example/basic.py,sha256=5MoHZMBxHMdC61oj-CP19gj9SxSvIcDrQL934JPZoQs,1549
40
43
  examples/qdrant_example/__init__.py,sha256=Ze9xEzW8FiHUO58YBa8JeHNOwcmo3dpYH77AkdyglKU,197
41
44
  examples/qdrant_example/basic.py,sha256=DCMjHSuBZKkhEjCkwy5d5La9WMyW0lCWqtcZWiFCEm4,1425
42
45
  examples/weaviate_example/__init__.py,sha256=8JMDBsRSEV10HfTd-YC7xb4txBjD3la56snk-Bbg2Kw,618
43
46
  examples/weaviate_example/query_text.py,sha256=qz9o-fTDzX5AW5m8BJF-TfmBdokxh492NfnmnPUMU3s,64814
44
- langtrace_python_sdk/__init__.py,sha256=j7EX7oY783Nmh6dQQO9VQVtirVnz4ajr7sBkw-y6rRk,1113
45
- langtrace_python_sdk/langtrace.py,sha256=pN-xJRXrtvJIenMOH0-xlNXcnqL9qMjg28SrW-PMRU0,6978
46
- langtrace_python_sdk/version.py,sha256=PUbyHN5ixal0BffZXLS2fU7ojPZOahFVrPT578Lb1Sg,23
47
+ langtrace_python_sdk/__init__.py,sha256=VZM6i71NR7pBQK6XvJWRelknuTYUhqwqE7PlicKa5Wg,1166
48
+ langtrace_python_sdk/langtrace.py,sha256=WRgbBS7T1q3ZELvVZLVCKdqa00m64lozgeiCp6MOQn8,7352
49
+ langtrace_python_sdk/version.py,sha256=ORNtksaL65IiKUhkJEaS3s0gzZq5HMSHSwIKtUEfCBA,23
47
50
  langtrace_python_sdk/constants/__init__.py,sha256=P8QvYwt5czUNDZsKS64vxm9Dc41ptGbuF1TFtAF6nv4,44
48
51
  langtrace_python_sdk/constants/exporter/langtrace_exporter.py,sha256=5MNjnAOg-4am78J3gVMH6FSwq5N8TOj72ugkhsw4vi0,46
49
52
  langtrace_python_sdk/constants/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
53
  langtrace_python_sdk/constants/instrumentation/anthropic.py,sha256=YX3llt3zwDY6XrYk3CB8WEVqgrzRXEw_ffyk56JoF3k,126
51
54
  langtrace_python_sdk/constants/instrumentation/chroma.py,sha256=hiPGYdHS0Yj4Kh3eaYBbuCAl_swqIygu80yFqkOgdak,955
52
55
  langtrace_python_sdk/constants/instrumentation/cohere.py,sha256=tf9sDfb5K3qOAHChEE5o8eYWPZ1io58VsOjZDCZPxfw,577
53
- langtrace_python_sdk/constants/instrumentation/common.py,sha256=TCHX8uqIJD2p9sONGrlX6Q3b5Mj859PTP-c729ogKcY,782
56
+ langtrace_python_sdk/constants/instrumentation/common.py,sha256=UyYObokJpNPOPft_TPmhP00WONV0KqKOkX6mvN3AH5w,806
54
57
  langtrace_python_sdk/constants/instrumentation/groq.py,sha256=VFXmIl4aqGY_fS0PAmjPj_Qm7Tibxbx7Ur_e7rQpqXc,134
58
+ langtrace_python_sdk/constants/instrumentation/ollama.py,sha256=zFfSUKX5v1c612doKSxsmIwQeeQxSPkFp_ZzjWQSPNE,142
55
59
  langtrace_python_sdk/constants/instrumentation/openai.py,sha256=uEOH5UXapU2DSf2AdgXTRhhJEHGWXUNFkUGD5QafflM,1164
56
- langtrace_python_sdk/constants/instrumentation/pinecone.py,sha256=Xaqqw-xBO0JJLGk75hiCUQGztNm0HiVaLQvjtYK7VJM,472
60
+ langtrace_python_sdk/constants/instrumentation/pinecone.py,sha256=0TityERbGWaHGSN8-vyYZtYCjVj8fQOKae8lng0O0Bk,478
57
61
  langtrace_python_sdk/constants/instrumentation/qdrant.py,sha256=yL7BopNQTXW7L7Z-gVM2PdusKD7r9qqcATvczFd7NtQ,1999
58
62
  langtrace_python_sdk/constants/instrumentation/weaviate.py,sha256=Iytf2OpB_irZYEmvOQ7Pf483EdG5Bh59GxaBlXck0yY,1501
59
63
  langtrace_python_sdk/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
64
  langtrace_python_sdk/extensions/langtrace_exporter.py,sha256=gWVRU2DlB4xjZ4ww7M63DaLiAN5zQ2k1HPrythmjEdo,4202
61
- langtrace_python_sdk/instrumentation/__init__.py,sha256=htP583cfv32IUvWeck6edRiPQxhk0uzUa1l1vgbtjtY,1042
65
+ langtrace_python_sdk/extensions/langtrace_filesystem.py,sha256=lQlFgKM5sRrNHvaKMioxEdIvoY6V-cG2tnEyddT3lPM,6776
66
+ langtrace_python_sdk/instrumentation/__init__.py,sha256=18E7qZOIKmSm59ij7n-ytCv3qenjkDlNz9xPjapOLtY,1107
62
67
  langtrace_python_sdk/instrumentation/anthropic/__init__.py,sha256=donrurJAGYlxrSRA3BIf76jGeUcAx9Tq8CVpah68S0Y,101
63
68
  langtrace_python_sdk/instrumentation/anthropic/instrumentation.py,sha256=-srgE8qumAn0ulQYZxMa8ch-9IBH0XgBW_rfEnGk6LI,1684
64
69
  langtrace_python_sdk/instrumentation/anthropic/patch.py,sha256=52GRkW7fhF2VB9JvYGMaPwOvWH3Q5rsIEaVlnFm_Zz0,8548
65
70
  langtrace_python_sdk/instrumentation/chroma/__init__.py,sha256=pNZ5UO8Q-d5VkXSobBf79reB6AmEl_usnnTp5Itv818,95
66
71
  langtrace_python_sdk/instrumentation/chroma/instrumentation.py,sha256=nT6PS6bsrIOO9kLV5GuUeRjMe6THHHAZGvqWBP1dYog,1807
67
- langtrace_python_sdk/instrumentation/chroma/patch.py,sha256=ignW4qVzG6F4_J_SUT_b8AbaVgM0YHc_qMPG9gn3HsQ,8871
72
+ langtrace_python_sdk/instrumentation/chroma/patch.py,sha256=HhIkXGbVfzpEB4edxzlG9yx2SG_B0dTn5Pnff4PLDCA,9043
68
73
  langtrace_python_sdk/instrumentation/cohere/__init__.py,sha256=sGUSLdTUyYf36Tm6L5jQflhzCqvmWrhnBOMYHjvp6Hs,95
69
74
  langtrace_python_sdk/instrumentation/cohere/instrumentation.py,sha256=YQFHZIBd7SSPD4b6Va-ZR0thf_AuBCqj5yzHLHJVWnM,2121
70
75
  langtrace_python_sdk/instrumentation/cohere/patch.py,sha256=uGjZm_c1-xpZilHD8ljGr4AqQB3UNU04SKl9s2alGzs,26726
71
76
  langtrace_python_sdk/instrumentation/groq/__init__.py,sha256=ZXeq_nrej6Lm_uoMFEg8wbSejhjB2UJ5IoHQBPc2-C0,91
72
77
  langtrace_python_sdk/instrumentation/groq/instrumentation.py,sha256=Ttf07XVKhdYY1_fqJc7QWiSdmgEhEVyQB_3Az2_wqYo,1832
73
- langtrace_python_sdk/instrumentation/groq/patch.py,sha256=eWHH1fxpmj0CHV0_jxIcGFdmpnQJe-U7dgtvsEA96bA,26203
78
+ langtrace_python_sdk/instrumentation/groq/patch.py,sha256=EKH9tjoDbwWavIAwUadaR5tFiy-S69h1IxxzH_1SSRg,26354
74
79
  langtrace_python_sdk/instrumentation/langchain/__init__.py,sha256=-7ZkqQFu64F-cxSFd1ZPrciODKqmUIyUbQQ-eHuQPyM,101
75
80
  langtrace_python_sdk/instrumentation/langchain/instrumentation.py,sha256=_Z4AeNb2hBPSCvMRxE-mUfmkUO_wP_tGGtu-jppWPiI,3462
76
- langtrace_python_sdk/instrumentation/langchain/patch.py,sha256=aa4WG70n-9ssECMKFH9H1yFLmDfFPjtuW4ilTqfJD3c,3854
81
+ langtrace_python_sdk/instrumentation/langchain/patch.py,sha256=2ZgLdgQpvie4PtpVC068T3KUEBqcLQCRsdyThmKh7VQ,4089
77
82
  langtrace_python_sdk/instrumentation/langchain_community/__init__.py,sha256=mj5RR_cfkjMql7W9OyyhmviT2GZ-4Pv9XJfGwJufp_E,119
78
83
  langtrace_python_sdk/instrumentation/langchain_community/instrumentation.py,sha256=-9E2-8-XR5PQ5ON-_ib53p5Tp0uD4MT4Ioh4MlWlF2k,5192
79
- langtrace_python_sdk/instrumentation/langchain_community/patch.py,sha256=F6wCJlBxFUyQyUFQb_Z8IzOfveUiz1G8W-tMXFX8_wk,3872
84
+ langtrace_python_sdk/instrumentation/langchain_community/patch.py,sha256=aKhTNzmmyriAPfx5rnDQdK0ctktBN-fTIJRBBsKOpRw,4046
80
85
  langtrace_python_sdk/instrumentation/langchain_core/__init__.py,sha256=kumE_reeqgM-ZvEZ6-XxyT-F-HAdKq_v_PKvsLb4EZQ,110
81
86
  langtrace_python_sdk/instrumentation/langchain_core/instrumentation.py,sha256=KNXHtlnq80akLACF-vbPCo9oVXhnVjYIM1Lo7kNRwEg,5937
82
- langtrace_python_sdk/instrumentation/langchain_core/patch.py,sha256=DmNuc8cTniuhEeYZIR4TfNBYDrleQtYWam031o_pl94,8593
87
+ langtrace_python_sdk/instrumentation/langchain_core/patch.py,sha256=-beRBpL9ryWfxhU50UGEbTKNFK5RiQyzP1hfyd6i3uE,8869
83
88
  langtrace_python_sdk/instrumentation/langgraph/__init__.py,sha256=eitlHloY-aZ4ZuIEJx61AadEA3G7siyecP-V-lziAr8,101
84
89
  langtrace_python_sdk/instrumentation/langgraph/instrumentation.py,sha256=SUZZhWSIbcfsF1S5NtEqW8QzkRM_pKAuXB7pwk5tsOU,2526
85
- langtrace_python_sdk/instrumentation/langgraph/patch.py,sha256=umxfyrpRX01WgqKNv8El7BSFPaghP49jGrGAniIZ6LI,4710
90
+ langtrace_python_sdk/instrumentation/langgraph/patch.py,sha256=jFW2xMtTNI5B0YaRvfmGuCc-Iyrx29NhS_5uTI814mo,4883
86
91
  langtrace_python_sdk/instrumentation/llamaindex/__init__.py,sha256=rHvuqpuQKLj57Ow7vuKRqxAN5jT0b5NBeHwhXbbnRa4,103
87
92
  langtrace_python_sdk/instrumentation/llamaindex/instrumentation.py,sha256=8iAg-Oxwf2W4S60qRfO5mvzORYxublgq7FdGWqUB4q8,2965
88
- langtrace_python_sdk/instrumentation/llamaindex/patch.py,sha256=LwnI9DCC5wcnixPUOmwIWSE7ryTk1J0xFBYdJja8t_Q,4324
93
+ langtrace_python_sdk/instrumentation/llamaindex/patch.py,sha256=OGk7ps438gW49zvJQCDp7ZmkQnFxouAUu2PvHbmcAP8,4496
94
+ langtrace_python_sdk/instrumentation/ollama/__init__.py,sha256=g2zJsXnDHinXPzTc-WxDeTtHmr9gmAj3K6l_00kP8c8,82
95
+ langtrace_python_sdk/instrumentation/ollama/instrumentation.py,sha256=jdsvkqUJAAUNLVPtAkn_rG26HXetVQXWtjn4a6eWZro,2029
96
+ langtrace_python_sdk/instrumentation/ollama/patch.py,sha256=CGLgt0qZg3WDr6XLn32qqs4D9USdMmeTmJxctbAsDeM,7908
89
97
  langtrace_python_sdk/instrumentation/openai/__init__.py,sha256=VPHRNCQEdkizIVP2d0Uw_a7t8XOTSTprEIB8oboJFbs,95
90
98
  langtrace_python_sdk/instrumentation/openai/instrumentation.py,sha256=A0BJHRLcZ74TNVg6I0I9M5YWvSpAtXwMmME6N5CEQ_M,2945
91
- langtrace_python_sdk/instrumentation/openai/patch.py,sha256=ugf3y-20YVqJmHsheQaL3EEy7FPbOgEMtcG5dOYjxiE,40553
99
+ langtrace_python_sdk/instrumentation/openai/patch.py,sha256=uUoeeZMAlH8PTZyIObjAI8kU2H5iHuZbPF09Gk70IKo,41103
92
100
  langtrace_python_sdk/instrumentation/pinecone/__init__.py,sha256=DzXyGh9_MGWveJvXULkFwdkf7PbG2s3bAWtT1Dmz7Ok,99
93
- langtrace_python_sdk/instrumentation/pinecone/instrumentation.py,sha256=mxQXe3oAOPLsMJGlEzAe6zpgK7RtWfqmcNmGW_gQXX4,1900
94
- langtrace_python_sdk/instrumentation/pinecone/patch.py,sha256=nZUHZ_1HfLjByJS0gkvrDRj69JbdnfWpezk6zl1EMvU,5000
101
+ langtrace_python_sdk/instrumentation/pinecone/instrumentation.py,sha256=HDXkRITrVPwdQEoOYJOfMzZE_2-vDDvuqHTlD8W1lQw,1845
102
+ langtrace_python_sdk/instrumentation/pinecone/patch.py,sha256=KiIRRz8kk47FllFT746Cb_w6F6M60AN_pcsguD979E4,5172
95
103
  langtrace_python_sdk/instrumentation/qdrant/__init__.py,sha256=TaIGSAEPysrL23KJ5FcEL1tfQogrKCtEQ75_u62eqso,95
96
104
  langtrace_python_sdk/instrumentation/qdrant/instrumentation.py,sha256=vl2eKSP55aqDo1JiRlvOUBrr6kddvG9Z5dCYew2OG08,1816
97
- langtrace_python_sdk/instrumentation/qdrant/patch.py,sha256=Teho0q6m9XQGsIkptZ42891eIzpW922tEFqcjFb3svc,4775
105
+ langtrace_python_sdk/instrumentation/qdrant/patch.py,sha256=RhEHQxN7PJN0DjoC656Sw3GeYrJzHhp1bSky8rqOE5o,4948
98
106
  langtrace_python_sdk/instrumentation/weaviate/__init__.py,sha256=Mc-Je6evPo-kKQzerTG7bd1XO5JOh4YGTE3wBxaUBwg,99
99
107
  langtrace_python_sdk/instrumentation/weaviate/instrumentation.py,sha256=Dn2wMj__nNZkUtDw_jEYslE8-bz2KGkdAU_t8qzWjuA,2281
100
- langtrace_python_sdk/instrumentation/weaviate/patch.py,sha256=boHMRwQC9CIukoX3dTCZCF5L9TL1R5Mlu2o_UUrO7Yg,5755
101
- langtrace_python_sdk/types/__init__.py,sha256=-j8cuz3bhUdOqj7N2c0w5y-j3UmcxwEgNh8BWeXwHoI,813
108
+ langtrace_python_sdk/instrumentation/weaviate/patch.py,sha256=xzJmPVgllnahCetBDfH19_cANBUjHIp7NIVLHC9iEnM,5927
109
+ langtrace_python_sdk/types/__init__.py,sha256=KDW6S74FDxpeBa9xoH5zVEYfmRjccCCHzlW7lTJg1TA,3194
102
110
  langtrace_python_sdk/utils/__init__.py,sha256=E0nQyBE-4O_GR2PM9y_l7shx4hJLo5xRThR_LMx97M0,278
111
+ langtrace_python_sdk/utils/langtrace_sampler.py,sha256=BupNndHbU9IL_wGleKetz8FdcveqHMBVz1bfKTTW80w,1753
103
112
  langtrace_python_sdk/utils/llm.py,sha256=CiASOvObFvsN6T7ogWywNXfXGzI__u9misgolLxyeZk,2161
104
113
  langtrace_python_sdk/utils/misc.py,sha256=CD9NWRLxLpFd0YwlHJqzlpFNedXVWtAKGOjQWnDCo8k,838
105
114
  langtrace_python_sdk/utils/prompt_registry.py,sha256=-BNHX_UPAqBG1IdNUXZIA669M59wvFTyTvBifrFjy3k,2600
106
115
  langtrace_python_sdk/utils/sdk_version_checker.py,sha256=FzjIWZjn53cX0LEVPdipQd1fO9lG8iGVUEVUs9Hyk6M,1713
107
116
  langtrace_python_sdk/utils/silently_fail.py,sha256=F_9EteXCO9Cyq-8MA1OT2Zy_dx8n06nt31I7t7ui24E,478
108
117
  langtrace_python_sdk/utils/types.py,sha256=l-N6o7cnWUyrD6dBvW7W3Pf5CkPo5QaoT__k1XLbrQg,383
109
- langtrace_python_sdk/utils/with_root_span.py,sha256=IPosE45Ef4jsfsHzW8cFiBPp5B64G4aBHUCU2_R4REc,7239
118
+ langtrace_python_sdk/utils/with_root_span.py,sha256=RO-MhRUNSWdSo7KKOdAnTBfwj973KMTEKD-e54fSr0c,7539
110
119
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
120
  tests/conftest.py,sha256=0Jo6iCZTXbdvyJVhG9UpYGkLabL75378oauCzmt-Sa8,603
112
121
  tests/utils.py,sha256=hP8sTH-M8WO6zlLkSFHPf6483ZcKEcnxul6JIIb1pLM,1396
@@ -143,7 +152,8 @@ tests/pinecone/cassettes/test_query.yaml,sha256=b5v9G3ssUy00oG63PlFUR3JErF2Js-5A
143
152
  tests/pinecone/cassettes/test_upsert.yaml,sha256=neWmQ1v3d03V8WoLl8FoFeeCYImb8pxlJBWnFd_lITU,38607
144
153
  tests/qdrant/conftest.py,sha256=9n0uHxxIjWk9fbYc4bx-uP8lSAgLBVx-cV9UjnsyCHM,381
145
154
  tests/qdrant/test_qdrant.py,sha256=pzjAjVY2kmsmGfrI2Gs2xrolfuaNHz7l1fqGQCjp5_o,3353
146
- langtrace_python_sdk-2.1.16.dist-info/METADATA,sha256=yXtCuRrFTuyr_ITt87NfKTmJS4y1yflOGcq3iozYNCM,13091
147
- langtrace_python_sdk-2.1.16.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
148
- langtrace_python_sdk-2.1.16.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
149
- langtrace_python_sdk-2.1.16.dist-info/RECORD,,
155
+ langtrace_python_sdk-2.1.19.dist-info/METADATA,sha256=Ll01P8FwZ7OwKOnM2UajEWZsLj7EXGTKhcZvWKLS2Dk,13161
156
+ langtrace_python_sdk-2.1.19.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
157
+ langtrace_python_sdk-2.1.19.dist-info/entry_points.txt,sha256=1_b9-qvf2fE7uQNZcbUei9vLpFZBbbh9LrtGw95ssAo,70
158
+ langtrace_python_sdk-2.1.19.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
159
+ langtrace_python_sdk-2.1.19.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [fsspec.specs]
2
+ langtracefs = langtrace_python_sdk:LangTraceFileSystem