langtrace-python-sdk 2.1.4__py3-none-any.whl → 2.1.5__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.
@@ -19,8 +19,8 @@ import langtrace_python_sdk.langtrace as langtrace
19
19
  from langtrace_python_sdk import with_langtrace_root_span
20
20
 
21
21
  # Set these environment variables
22
- WCS_DEMO_URL = "WEVIATE CLUSTER URL"
23
- WCS_DEMO_RO_KEY = "<WEAVIATE API KEY>"
22
+ WCS_DEMO_URL = os.environ["WCS_DEMO_URL"]
23
+ WCS_DEMO_RO_KEY = os.environ["WCS_DEMO_RO_KEY"]
24
24
 
25
25
  # Connect to a WCS instance
26
26
  client = weaviate.connect_to_wcs(
@@ -30,7 +30,7 @@ client = weaviate.connect_to_wcs(
30
30
  headers={"X-OpenAI-Api-Key": os.environ["OPENAI_APIKEY"]},
31
31
  )
32
32
 
33
- langtrace.init(api_key="asdf", write_spans_to_console=True, batch=False)
33
+ langtrace.init()
34
34
 
35
35
 
36
36
  @with_langtrace_root_span()
@@ -0,0 +1,29 @@
1
+ from .anthropic import AnthropicInstrumentation
2
+ from .chroma import ChromaInstrumentation
3
+ from .cohere import CohereInstrumentation
4
+ from .groq import GroqInstrumentation
5
+ from .langchain import LangchainInstrumentation
6
+ from .langchain_community import LangchainCommunityInstrumentation
7
+ from .langchain_core import LangchainCoreInstrumentation
8
+ from .langgraph import LanggraphInstrumentation
9
+ from .llamaindex import LlamaindexInstrumentation
10
+ from .openai import OpenAIInstrumentation
11
+ from .pinecone import PineconeInstrumentation
12
+ from .qdrant import QdrantInstrumentation
13
+ from .weaviate import WeaviateInstrumentation
14
+
15
+ __all__ = [
16
+ "AnthropicInstrumentation",
17
+ "ChromaInstrumentation",
18
+ "CohereInstrumentation",
19
+ "GroqInstrumentation",
20
+ "LangchainInstrumentation",
21
+ "LangchainCommunityInstrumentation",
22
+ "LangchainCoreInstrumentation",
23
+ "LanggraphInstrumentation",
24
+ "LlamaindexInstrumentation",
25
+ "OpenAIInstrumentation",
26
+ "PineconeInstrumentation",
27
+ "QdrantInstrumentation",
28
+ "WeaviateInstrumentation",
29
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import AnthropicInstrumentation
2
+
3
+ __all__ = [
4
+ "AnthropicInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import ChromaInstrumentation
2
+
3
+ __all__ = [
4
+ "ChromaInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import CohereInstrumentation
2
+
3
+ __all__ = [
4
+ "CohereInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import GroqInstrumentation
2
+
3
+ __all__ = [
4
+ "GroqInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import LangchainInstrumentation
2
+
3
+ __all__ = [
4
+ "LangchainInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import LangchainCommunityInstrumentation
2
+
3
+ __all__ = [
4
+ "LangchainCommunityInstrumentation",
5
+ ]
@@ -0,0 +1,6 @@
1
+ from .instrumentation import LangchainCoreInstrumentation
2
+
3
+
4
+ __all__ = [
5
+ "LangchainCoreInstrumentation",
6
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import LanggraphInstrumentation
2
+
3
+ __all__ = [
4
+ "LanggraphInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import LlamaindexInstrumentation
2
+
3
+ __all__ = [
4
+ "LlamaindexInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import OpenAIInstrumentation
2
+
3
+ __all__ = [
4
+ "OpenAIInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import PineconeInstrumentation
2
+
3
+ __all__ = [
4
+ "PineconeInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import QdrantInstrumentation
2
+
3
+ __all__ = [
4
+ "QdrantInstrumentation",
5
+ ]
@@ -0,0 +1,5 @@
1
+ from .instrumentation import WeaviateInstrumentation
2
+
3
+ __all__ = [
4
+ "WeaviateInstrumentation",
5
+ ]
@@ -28,46 +28,22 @@ import sys
28
28
  from opentelemetry.sdk.resources import Resource
29
29
 
30
30
  from langtrace_python_sdk.extensions.langtrace_exporter import LangTraceExporter
31
- from langtrace_python_sdk.instrumentation.anthropic.instrumentation import (
31
+ from langtrace_python_sdk.instrumentation import (
32
32
  AnthropicInstrumentation,
33
- )
34
- from langtrace_python_sdk.instrumentation.chroma.instrumentation import (
35
33
  ChromaInstrumentation,
36
- )
37
- from langtrace_python_sdk.instrumentation.cohere.instrumentation import (
38
34
  CohereInstrumentation,
39
- )
40
- from langtrace_python_sdk.instrumentation.groq.instrumentation import (
41
35
  GroqInstrumentation,
42
- )
43
- from langtrace_python_sdk.instrumentation.langchain.instrumentation import (
44
36
  LangchainInstrumentation,
45
- )
46
- from langtrace_python_sdk.instrumentation.langchain_community.instrumentation import (
47
37
  LangchainCommunityInstrumentation,
48
- )
49
- from langtrace_python_sdk.instrumentation.langchain_core.instrumentation import (
50
38
  LangchainCoreInstrumentation,
51
- )
52
- from langtrace_python_sdk.instrumentation.langgraph.instrumentation import (
53
39
  LanggraphInstrumentation,
54
- )
55
- from langtrace_python_sdk.instrumentation.llamaindex.instrumentation import (
56
40
  LlamaindexInstrumentation,
57
- )
58
- from langtrace_python_sdk.instrumentation.openai.instrumentation import (
59
41
  OpenAIInstrumentation,
60
- )
61
- from langtrace_python_sdk.instrumentation.pinecone.instrumentation import (
62
42
  PineconeInstrumentation,
63
- )
64
- from langtrace_python_sdk.instrumentation.qdrant.instrumentation import (
65
43
  QdrantInstrumentation,
66
- )
67
- from langtrace_python_sdk.instrumentation.weaviate.instrumentation import (
68
44
  WeaviateInstrumentation,
69
45
  )
70
-
46
+ from opentelemetry.instrumentation.sqlalchemy import SQLAlchemyInstrumentor
71
47
  from colorama import Fore
72
48
 
73
49
 
@@ -97,7 +73,7 @@ def init(
97
73
  provider.add_span_processor(simple_processor_console)
98
74
 
99
75
  elif custom_remote_exporter is not None:
100
- print(Fore.BLUE + f"Exporting spans to custom remote exporter.." + Fore.RESET)
76
+ print(Fore.BLUE + "Exporting spans to custom remote exporter.." + Fore.RESET)
101
77
  if batch:
102
78
  provider.add_span_processor(batch_processor_remote)
103
79
  else:
@@ -130,6 +106,7 @@ def init(
130
106
  "anthropic": AnthropicInstrumentation(),
131
107
  "cohere": CohereInstrumentation(),
132
108
  "weaviate": WeaviateInstrumentation(),
109
+ "sqlalchemy": SQLAlchemyInstrumentor(),
133
110
  }
134
111
 
135
112
  init_instrumentations(disable_instrumentations, all_instrumentations)
@@ -1 +1 @@
1
- __version__ = "2.1.4"
1
+ __version__ = "2.1.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: langtrace-python-sdk
3
- Version: 2.1.4
3
+ Version: 2.1.5
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>
@@ -14,6 +14,7 @@ Requires-Dist: colorama>=0.4.6
14
14
  Requires-Dist: opentelemetry-api>=1.24.0
15
15
  Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.24.0
16
16
  Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.24.0
17
+ Requires-Dist: opentelemetry-instrumentation-sqlalchemy>=0.45b0
17
18
  Requires-Dist: opentelemetry-instrumentation>=0.45b0
18
19
  Requires-Dist: opentelemetry-sdk>=1.24.0
19
20
  Requires-Dist: tiktoken>=0.1.1
@@ -35,10 +35,10 @@ examples/pinecone_example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
35
35
  examples/pinecone_example/basic.py,sha256=b-5-cSf3_N6Gk4zGVecGF47mBcFY9ZrC5ztrIZVgTQo,1430
36
36
  examples/qdrant_example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  examples/qdrant_example/basic.py,sha256=DCMjHSuBZKkhEjCkwy5d5La9WMyW0lCWqtcZWiFCEm4,1425
38
- examples/weaviate_example/query_text.py,sha256=s3f0hYYi-xdbh_LlTBDHegQiVi-4bW_eACb2EnEj8J4,64533
38
+ examples/weaviate_example/query_text.py,sha256=yhBCmJ61llKL5T92s1_R7yihS6koys2AJQWZXSYIT9w,64491
39
39
  langtrace_python_sdk/__init__.py,sha256=R4dv73QARUw4WRfCdSKkKzZTLDumF9jcSdwtVrzWhb4,962
40
- langtrace_python_sdk/langtrace.py,sha256=jWTG9F-vleKkDbC-l22eY6rKH0eHUyJCmgXpoLcPbbY,7409
41
- langtrace_python_sdk/version.py,sha256=1yR20YsjyDpnFQgDIQmHfutaSsaW0F7mDqjloRVRIG8,22
40
+ langtrace_python_sdk/langtrace.py,sha256=h168V4kyqSezozDnMVar2Xgbi764WvVA_PpSgVuBzz0,6560
41
+ langtrace_python_sdk/version.py,sha256=Ol8KeLnnX1kAXAFgJsZj4d_cZMypHQtaiyICJpuzp64,22
42
42
  langtrace_python_sdk/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  langtrace_python_sdk/constants/exporter/langtrace_exporter.py,sha256=5MNjnAOg-4am78J3gVMH6FSwq5N8TOj72ugkhsw4vi0,46
44
44
  langtrace_python_sdk/constants/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -53,44 +53,44 @@ langtrace_python_sdk/constants/instrumentation/qdrant.py,sha256=yL7BopNQTXW7L7Z-
53
53
  langtrace_python_sdk/constants/instrumentation/weaviate.py,sha256=Iytf2OpB_irZYEmvOQ7Pf483EdG5Bh59GxaBlXck0yY,1501
54
54
  langtrace_python_sdk/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  langtrace_python_sdk/extensions/langtrace_exporter.py,sha256=Fj--DzBr4AwTM_iS3lRz0NhqESEyTOZ3SBCA4OevFkE,4127
56
- langtrace_python_sdk/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- langtrace_python_sdk/instrumentation/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ langtrace_python_sdk/instrumentation/__init__.py,sha256=htP583cfv32IUvWeck6edRiPQxhk0uzUa1l1vgbtjtY,1042
57
+ langtrace_python_sdk/instrumentation/anthropic/__init__.py,sha256=donrurJAGYlxrSRA3BIf76jGeUcAx9Tq8CVpah68S0Y,101
58
58
  langtrace_python_sdk/instrumentation/anthropic/instrumentation.py,sha256=-srgE8qumAn0ulQYZxMa8ch-9IBH0XgBW_rfEnGk6LI,1684
59
59
  langtrace_python_sdk/instrumentation/anthropic/patch.py,sha256=koAo6bA6nnRDk01fcrArqnyAmgzjxV20ofITMQyKVws,8427
60
- langtrace_python_sdk/instrumentation/chroma/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ langtrace_python_sdk/instrumentation/chroma/__init__.py,sha256=pNZ5UO8Q-d5VkXSobBf79reB6AmEl_usnnTp5Itv818,95
61
61
  langtrace_python_sdk/instrumentation/chroma/instrumentation.py,sha256=nT6PS6bsrIOO9kLV5GuUeRjMe6THHHAZGvqWBP1dYog,1807
62
62
  langtrace_python_sdk/instrumentation/chroma/patch.py,sha256=1FvA4YvGw9temfBC2g33xGEzIcL1rVdABXwMVTPm3aM,8750
63
- langtrace_python_sdk/instrumentation/cohere/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ langtrace_python_sdk/instrumentation/cohere/__init__.py,sha256=sGUSLdTUyYf36Tm6L5jQflhzCqvmWrhnBOMYHjvp6Hs,95
64
64
  langtrace_python_sdk/instrumentation/cohere/instrumentation.py,sha256=YQFHZIBd7SSPD4b6Va-ZR0thf_AuBCqj5yzHLHJVWnM,2121
65
65
  langtrace_python_sdk/instrumentation/cohere/patch.py,sha256=hdSWArP0cdfGs0Q5KhkaowkwrYQIzxvF8NpY4sg8p2Q,26563
66
- langtrace_python_sdk/instrumentation/groq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ langtrace_python_sdk/instrumentation/groq/__init__.py,sha256=ZXeq_nrej6Lm_uoMFEg8wbSejhjB2UJ5IoHQBPc2-C0,91
67
67
  langtrace_python_sdk/instrumentation/groq/instrumentation.py,sha256=Ttf07XVKhdYY1_fqJc7QWiSdmgEhEVyQB_3Az2_wqYo,1832
68
68
  langtrace_python_sdk/instrumentation/groq/patch.py,sha256=Fo5QbNwScFwhvmXZQezbjF0AdajsHQ8a0f8nKsVFjF8,26068
69
- langtrace_python_sdk/instrumentation/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ langtrace_python_sdk/instrumentation/langchain/__init__.py,sha256=-7ZkqQFu64F-cxSFd1ZPrciODKqmUIyUbQQ-eHuQPyM,101
70
70
  langtrace_python_sdk/instrumentation/langchain/instrumentation.py,sha256=_Z4AeNb2hBPSCvMRxE-mUfmkUO_wP_tGGtu-jppWPiI,3462
71
71
  langtrace_python_sdk/instrumentation/langchain/patch.py,sha256=2BT_-DjfSPTmyHDqnpj-gVrMFxRSZugVC-YRPXnuupU,3796
72
- langtrace_python_sdk/instrumentation/langchain_community/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
+ langtrace_python_sdk/instrumentation/langchain_community/__init__.py,sha256=mj5RR_cfkjMql7W9OyyhmviT2GZ-4Pv9XJfGwJufp_E,119
73
73
  langtrace_python_sdk/instrumentation/langchain_community/instrumentation.py,sha256=-9E2-8-XR5PQ5ON-_ib53p5Tp0uD4MT4Ioh4MlWlF2k,5192
74
74
  langtrace_python_sdk/instrumentation/langchain_community/patch.py,sha256=uyRUp02M9mYjLsr36ZBCvJC7s40AGry3R_EcjvXaoWk,3751
75
- langtrace_python_sdk/instrumentation/langchain_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ langtrace_python_sdk/instrumentation/langchain_core/__init__.py,sha256=kumE_reeqgM-ZvEZ6-XxyT-F-HAdKq_v_PKvsLb4EZQ,110
76
76
  langtrace_python_sdk/instrumentation/langchain_core/instrumentation.py,sha256=KNXHtlnq80akLACF-vbPCo9oVXhnVjYIM1Lo7kNRwEg,5937
77
77
  langtrace_python_sdk/instrumentation/langchain_core/patch.py,sha256=Kqpv77ZKrZ4QMit36JtN59ubtWE8pX6t8gg6OOmIii0,8458
78
- langtrace_python_sdk/instrumentation/langgraph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ langtrace_python_sdk/instrumentation/langgraph/__init__.py,sha256=eitlHloY-aZ4ZuIEJx61AadEA3G7siyecP-V-lziAr8,101
79
79
  langtrace_python_sdk/instrumentation/langgraph/instrumentation.py,sha256=SUZZhWSIbcfsF1S5NtEqW8QzkRM_pKAuXB7pwk5tsOU,2526
80
80
  langtrace_python_sdk/instrumentation/langgraph/patch.py,sha256=fr90kuPokwxP2BGP2tU793ReDOp2FtehKMcsxS9tS_0,4589
81
- langtrace_python_sdk/instrumentation/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ langtrace_python_sdk/instrumentation/llamaindex/__init__.py,sha256=rHvuqpuQKLj57Ow7vuKRqxAN5jT0b5NBeHwhXbbnRa4,103
82
82
  langtrace_python_sdk/instrumentation/llamaindex/instrumentation.py,sha256=8iAg-Oxwf2W4S60qRfO5mvzORYxublgq7FdGWqUB4q8,2965
83
83
  langtrace_python_sdk/instrumentation/llamaindex/patch.py,sha256=q99qmEBNH54Oi_sHCIGBQFpIE4zaNKVjIWARlX8fJ-M,4189
84
- langtrace_python_sdk/instrumentation/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ langtrace_python_sdk/instrumentation/openai/__init__.py,sha256=VPHRNCQEdkizIVP2d0Uw_a7t8XOTSTprEIB8oboJFbs,95
85
85
  langtrace_python_sdk/instrumentation/openai/instrumentation.py,sha256=G2HSZfr6DuP2n-8v0h91M60m0DJWFBcru4-1FQJl-5A,2726
86
86
  langtrace_python_sdk/instrumentation/openai/patch.py,sha256=xi87lLHoj81xSx6MiqTAKWr3MLxXpMf84NzJ5uDm134,37288
87
- langtrace_python_sdk/instrumentation/pinecone/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ langtrace_python_sdk/instrumentation/pinecone/__init__.py,sha256=DzXyGh9_MGWveJvXULkFwdkf7PbG2s3bAWtT1Dmz7Ok,99
88
88
  langtrace_python_sdk/instrumentation/pinecone/instrumentation.py,sha256=mxQXe3oAOPLsMJGlEzAe6zpgK7RtWfqmcNmGW_gQXX4,1900
89
89
  langtrace_python_sdk/instrumentation/pinecone/patch.py,sha256=8uenVh4TCTJVuBGepm7nhTZBuW7HyjlZS4wPx7zi9cg,4879
90
- langtrace_python_sdk/instrumentation/qdrant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ langtrace_python_sdk/instrumentation/qdrant/__init__.py,sha256=TaIGSAEPysrL23KJ5FcEL1tfQogrKCtEQ75_u62eqso,95
91
91
  langtrace_python_sdk/instrumentation/qdrant/instrumentation.py,sha256=vl2eKSP55aqDo1JiRlvOUBrr6kddvG9Z5dCYew2OG08,1816
92
92
  langtrace_python_sdk/instrumentation/qdrant/patch.py,sha256=KcUWmvnS3PgPStzs1oWmlZsyomKBl3dmg8nXuR0T1C0,4654
93
- langtrace_python_sdk/instrumentation/weaviate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ langtrace_python_sdk/instrumentation/weaviate/__init__.py,sha256=Mc-Je6evPo-kKQzerTG7bd1XO5JOh4YGTE3wBxaUBwg,99
94
94
  langtrace_python_sdk/instrumentation/weaviate/instrumentation.py,sha256=4BnHRzXOKEauy2TNTZwpIagDFUp03CUyBZCdE2vinxk,2596
95
95
  langtrace_python_sdk/instrumentation/weaviate/patch.py,sha256=ig2fc33hNydEcH5cJWRycFnMXiXiJr731J-Vg5Ze4No,5634
96
96
  langtrace_python_sdk/types/__init__.py,sha256=-j8cuz3bhUdOqj7N2c0w5y-j3UmcxwEgNh8BWeXwHoI,813
@@ -137,7 +137,7 @@ tests/pinecone/cassettes/test_query.yaml,sha256=b5v9G3ssUy00oG63PlFUR3JErF2Js-5A
137
137
  tests/pinecone/cassettes/test_upsert.yaml,sha256=neWmQ1v3d03V8WoLl8FoFeeCYImb8pxlJBWnFd_lITU,38607
138
138
  tests/qdrant/conftest.py,sha256=9n0uHxxIjWk9fbYc4bx-uP8lSAgLBVx-cV9UjnsyCHM,381
139
139
  tests/qdrant/test_qdrant.py,sha256=pzjAjVY2kmsmGfrI2Gs2xrolfuaNHz7l1fqGQCjp5_o,3353
140
- langtrace_python_sdk-2.1.4.dist-info/METADATA,sha256=ZUsesq7cmXEYg7N5GOkKPYxz2wANwYTwXxfX5McSkdo,11769
141
- langtrace_python_sdk-2.1.4.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
142
- langtrace_python_sdk-2.1.4.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
143
- langtrace_python_sdk-2.1.4.dist-info/RECORD,,
140
+ langtrace_python_sdk-2.1.5.dist-info/METADATA,sha256=YMAZgu-2MfYrXYBr3CWOi7FMHV2OOmcyuKknp4Za7Nc,11833
141
+ langtrace_python_sdk-2.1.5.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
142
+ langtrace_python_sdk-2.1.5.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
143
+ langtrace_python_sdk-2.1.5.dist-info/RECORD,,