langtrace-python-sdk 2.3.20__py3-none-any.whl → 2.3.22__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.
- examples/dspy_example/optimizers/bootstrap_fewshot.py +89 -0
- examples/openai_example/chat_completion.py +19 -16
- langtrace_python_sdk/constants/instrumentation/common.py +1 -0
- langtrace_python_sdk/constants/instrumentation/litellm.py +18 -0
- langtrace_python_sdk/instrumentation/__init__.py +2 -0
- langtrace_python_sdk/instrumentation/dspy/patch.py +18 -8
- langtrace_python_sdk/instrumentation/litellm/__init__.py +5 -0
- langtrace_python_sdk/instrumentation/litellm/instrumentation.py +87 -0
- langtrace_python_sdk/instrumentation/litellm/patch.py +651 -0
- langtrace_python_sdk/instrumentation/litellm/types.py +170 -0
- langtrace_python_sdk/instrumentation/weaviate/instrumentation.py +20 -14
- langtrace_python_sdk/langtrace.py +2 -0
- langtrace_python_sdk/version.py +1 -1
- {langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/METADATA +13 -2
- {langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/RECORD +18 -12
- {langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/WHEEL +0 -0
- {langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/entry_points.txt +0 -0
- {langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,170 @@
|
|
1
|
+
"""
|
2
|
+
Copyright (c) 2024 Scale3 Labs
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
Unless required by applicable law or agreed to in writing, software
|
8
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
9
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
10
|
+
See the License for the specific language governing permissions and
|
11
|
+
limitations under the License.
|
12
|
+
"""
|
13
|
+
|
14
|
+
from typing import Any, Dict, List, Union, Optional, TypedDict
|
15
|
+
|
16
|
+
|
17
|
+
class ContentItem:
|
18
|
+
url: str
|
19
|
+
revised_prompt: str
|
20
|
+
base64: Optional[str]
|
21
|
+
|
22
|
+
def __init__(
|
23
|
+
self,
|
24
|
+
url: str,
|
25
|
+
revised_prompt: str,
|
26
|
+
base64: Optional[str],
|
27
|
+
):
|
28
|
+
self.url = url
|
29
|
+
self.revised_prompt = revised_prompt
|
30
|
+
self.base64 = base64
|
31
|
+
|
32
|
+
|
33
|
+
class ToolFunction:
|
34
|
+
name: str
|
35
|
+
arguments: str
|
36
|
+
|
37
|
+
def __init__(
|
38
|
+
self,
|
39
|
+
name: str,
|
40
|
+
arguments: str,
|
41
|
+
):
|
42
|
+
self.name = name
|
43
|
+
self.arguments = arguments
|
44
|
+
|
45
|
+
|
46
|
+
class ToolCall:
|
47
|
+
id: str
|
48
|
+
type: str
|
49
|
+
function: ToolFunction
|
50
|
+
|
51
|
+
def __init__(
|
52
|
+
self,
|
53
|
+
id: str,
|
54
|
+
type: str,
|
55
|
+
function: ToolFunction,
|
56
|
+
):
|
57
|
+
self.id = id
|
58
|
+
self.type = type
|
59
|
+
self.function = function
|
60
|
+
|
61
|
+
|
62
|
+
class Message:
|
63
|
+
role: str
|
64
|
+
content: Union[str, List[ContentItem], Dict[str, Any]]
|
65
|
+
tool_calls: Optional[List[ToolCall]]
|
66
|
+
|
67
|
+
def __init__(
|
68
|
+
self,
|
69
|
+
role: str,
|
70
|
+
content: Union[str, List[ContentItem], Dict[str, Any]],
|
71
|
+
content_filter_results: Optional[Any],
|
72
|
+
):
|
73
|
+
self.role = role
|
74
|
+
self.content = content
|
75
|
+
self.content_filter_results = content_filter_results
|
76
|
+
|
77
|
+
|
78
|
+
class Usage:
|
79
|
+
prompt_tokens: int
|
80
|
+
completion_tokens: int
|
81
|
+
total_tokens: int
|
82
|
+
|
83
|
+
def __init__(
|
84
|
+
self,
|
85
|
+
prompt_tokens: int,
|
86
|
+
completion_tokens: int,
|
87
|
+
total_tokens: int,
|
88
|
+
):
|
89
|
+
self.prompt_tokens = prompt_tokens
|
90
|
+
self.completion_tokens = completion_tokens
|
91
|
+
self.total_tokens = total_tokens
|
92
|
+
|
93
|
+
|
94
|
+
class Choice:
|
95
|
+
message: Message
|
96
|
+
content_filter_results: Optional[Any]
|
97
|
+
|
98
|
+
def __init__(
|
99
|
+
self,
|
100
|
+
message: Message,
|
101
|
+
content_filter_results: Optional[Any],
|
102
|
+
):
|
103
|
+
self.message = message
|
104
|
+
self.content_filter_results = content_filter_results
|
105
|
+
|
106
|
+
|
107
|
+
class ResultType:
|
108
|
+
model: Optional[str]
|
109
|
+
content: List[ContentItem]
|
110
|
+
system_fingerprint: Optional[str]
|
111
|
+
usage: Optional[Usage]
|
112
|
+
choices: Optional[List[Choice]]
|
113
|
+
response_format: Optional[str]
|
114
|
+
size: Optional[str]
|
115
|
+
encoding_format: Optional[str]
|
116
|
+
|
117
|
+
def __init__(
|
118
|
+
self,
|
119
|
+
model: Optional[str],
|
120
|
+
role: Optional[str],
|
121
|
+
content: List[ContentItem],
|
122
|
+
system_fingerprint: Optional[str],
|
123
|
+
usage: Optional[Usage],
|
124
|
+
functions: Optional[List[ToolCall]],
|
125
|
+
tools: Optional[List[ToolCall]],
|
126
|
+
choices: Optional[List[Choice]],
|
127
|
+
response_format: Optional[str],
|
128
|
+
size: Optional[str],
|
129
|
+
encoding_format: Optional[str],
|
130
|
+
):
|
131
|
+
self.model = model
|
132
|
+
self.role = role
|
133
|
+
self.content = content
|
134
|
+
self.system_fingerprint = system_fingerprint
|
135
|
+
self.usage = usage
|
136
|
+
self.functions = functions
|
137
|
+
self.tools = tools
|
138
|
+
self.choices = choices
|
139
|
+
self.response_format = response_format
|
140
|
+
self.size = size
|
141
|
+
self.encoding_format = encoding_format
|
142
|
+
|
143
|
+
|
144
|
+
class ImagesGenerateKwargs(TypedDict, total=False):
|
145
|
+
operation_name: str
|
146
|
+
model: Optional[str]
|
147
|
+
messages: Optional[List[Message]]
|
148
|
+
functions: Optional[List[ToolCall]]
|
149
|
+
tools: Optional[List[ToolCall]]
|
150
|
+
response_format: Optional[str]
|
151
|
+
size: Optional[str]
|
152
|
+
encoding_format: Optional[str]
|
153
|
+
|
154
|
+
|
155
|
+
class ImagesEditKwargs(TypedDict, total=False):
|
156
|
+
response_format: Optional[str]
|
157
|
+
size: Optional[str]
|
158
|
+
|
159
|
+
|
160
|
+
class ChatCompletionsCreateKwargs(TypedDict, total=False):
|
161
|
+
model: Optional[str]
|
162
|
+
messages: List[Message]
|
163
|
+
functions: Optional[List[ToolCall]]
|
164
|
+
tools: Optional[List[ToolCall]]
|
165
|
+
|
166
|
+
|
167
|
+
class EmbeddingsCreateKwargs(TypedDict, total=False):
|
168
|
+
dimensions: Optional[str]
|
169
|
+
input: Union[str, List[str], None]
|
170
|
+
encoding_format: Optional[Union[List[str], str]]
|
@@ -43,20 +43,26 @@ class WeaviateInstrumentation(BaseInstrumentor):
|
|
43
43
|
tracer_provider = kwargs.get("tracer_provider")
|
44
44
|
tracer = get_tracer(__name__, "", tracer_provider)
|
45
45
|
version = importlib.metadata.version("weaviate-client")
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
46
|
+
try:
|
47
|
+
for api_name, api_config in APIS.items():
|
48
|
+
if api_config.get("OPERATION") in ["query", "generate"]:
|
49
|
+
wrap_function_wrapper(
|
50
|
+
api_config["MODULE"],
|
51
|
+
api_config["METHOD"],
|
52
|
+
generic_query_patch(api_name, version, tracer),
|
53
|
+
)
|
54
|
+
elif api_config.get("OPERATION") == "create":
|
55
|
+
print(
|
56
|
+
api_config["MODULE"],
|
57
|
+
api_config["METHOD"],
|
58
|
+
)
|
59
|
+
wrap_function_wrapper(
|
60
|
+
api_config["MODULE"],
|
61
|
+
api_config["METHOD"],
|
62
|
+
generic_collection_patch(api_name, version, tracer),
|
63
|
+
)
|
64
|
+
except ModuleNotFoundError as e:
|
65
|
+
pass
|
60
66
|
|
61
67
|
def _instrument_module(self, module_name):
|
62
68
|
pass
|
@@ -46,6 +46,7 @@ from langtrace_python_sdk.instrumentation import (
|
|
46
46
|
LangchainCoreInstrumentation,
|
47
47
|
LangchainInstrumentation,
|
48
48
|
LanggraphInstrumentation,
|
49
|
+
LiteLLMInstrumentation,
|
49
50
|
LlamaindexInstrumentation,
|
50
51
|
MistralInstrumentation,
|
51
52
|
OllamaInstrumentor,
|
@@ -137,6 +138,7 @@ def init(
|
|
137
138
|
"langchain-core": LangchainCoreInstrumentation(),
|
138
139
|
"langchain-community": LangchainCommunityInstrumentation(),
|
139
140
|
"langgraph": LanggraphInstrumentation(),
|
141
|
+
"litellm": LiteLLMInstrumentation(),
|
140
142
|
"anthropic": AnthropicInstrumentation(),
|
141
143
|
"cohere": CohereInstrumentation(),
|
142
144
|
"weaviate-client": WeaviateInstrumentation(),
|
langtrace_python_sdk/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "2.3.
|
1
|
+
__version__ = "2.3.22"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: langtrace-python-sdk
|
3
|
-
Version: 2.3.
|
3
|
+
Version: 2.3.22
|
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>
|
@@ -23,6 +23,7 @@ Requires-Dist: sqlalchemy
|
|
23
23
|
Requires-Dist: tiktoken>=0.1.1
|
24
24
|
Requires-Dist: trace-attributes==7.0.4
|
25
25
|
Requires-Dist: transformers>=4.11.3
|
26
|
+
Requires-Dist: ujson>=5.10.0
|
26
27
|
Provides-Extra: dev
|
27
28
|
Requires-Dist: anthropic; extra == 'dev'
|
28
29
|
Requires-Dist: chromadb; extra == 'dev'
|
@@ -34,6 +35,7 @@ Requires-Dist: groq; extra == 'dev'
|
|
34
35
|
Requires-Dist: langchain; extra == 'dev'
|
35
36
|
Requires-Dist: langchain-community; extra == 'dev'
|
36
37
|
Requires-Dist: langchain-openai; extra == 'dev'
|
38
|
+
Requires-Dist: litellm; extra == 'dev'
|
37
39
|
Requires-Dist: mistralai; extra == 'dev'
|
38
40
|
Requires-Dist: ollama; extra == 'dev'
|
39
41
|
Requires-Dist: openai==1.30.1; extra == 'dev'
|
@@ -287,6 +289,14 @@ By default, prompt and completion data are captured. If you would like to opt ou
|
|
287
289
|
|
288
290
|
`TRACE_PROMPT_COMPLETION_DATA=false`
|
289
291
|
|
292
|
+
### Enable/Disable checkpoint tracing for DSPy
|
293
|
+
|
294
|
+
By default, checkpoints are traced for DSPy pipelines. If you would like to disable it, set the following env var,
|
295
|
+
|
296
|
+
`TRACE_DSPY_CHECKPOINT=false`
|
297
|
+
|
298
|
+
Note: Checkpoint tracing will increase the latency of executions as the state is serialized. Please disable it in production.
|
299
|
+
|
290
300
|
## Supported integrations
|
291
301
|
|
292
302
|
Langtrace automatically captures traces from the following vendors:
|
@@ -302,8 +312,9 @@ Langtrace automatically captures traces from the following vendors:
|
|
302
312
|
| Gemini | LLM | :x: | :white_check_mark: |
|
303
313
|
| Mistral | LLM | :x: | :white_check_mark: |
|
304
314
|
| Langchain | Framework | :x: | :white_check_mark: |
|
305
|
-
| LlamaIndex | Framework | :white_check_mark: | :white_check_mark: |
|
306
315
|
| Langgraph | Framework | :x: | :white_check_mark: |
|
316
|
+
| LlamaIndex | Framework | :white_check_mark: | :white_check_mark: |
|
317
|
+
| LiteLLM | Framework | :x: | :white_check_mark: |
|
307
318
|
| DSPy | Framework | :x: | :white_check_mark: |
|
308
319
|
| CrewAI | Framework | :x: | :white_check_mark: |
|
309
320
|
| Ollama | Framework | :x: | :white_check_mark: |
|
@@ -40,6 +40,7 @@ examples/dspy_example/math_problems_cot_parallel.py,sha256=5clw-IIVA0mWm0N0xWNDM
|
|
40
40
|
examples/dspy_example/program_of_thought_basic.py,sha256=oEbtJdeKENMUbex25-zyStWwurRWW6OdP0KDs-jUkko,984
|
41
41
|
examples/dspy_example/quiz_gen.py,sha256=OyGhepeX8meKOtLdmlYUjMD2ECk-ZQuQXUZif1hFQY4,3371
|
42
42
|
examples/dspy_example/react.py,sha256=APAnHqgy9w-qY5jnPD_WbBx6bwo9C-DhPnUuhL-t7sg,1376
|
43
|
+
examples/dspy_example/optimizers/bootstrap_fewshot.py,sha256=IxJJIaPKowP0-iZSuviKQnhc0bLj0_46cO13O9vLAlc,3135
|
43
44
|
examples/embedchain_example/simple.py,sha256=1lwnsh5wVjGjQ18OinID6aJ_itR-x0TOngtNU1E-Emc,373
|
44
45
|
examples/fastapi_example/__init__.py,sha256=INIfvJP7zC_KkJCtulS1qbh61-MJTPAHnzAgzeKi0yU,87
|
45
46
|
examples/fastapi_example/basic_route.py,sha256=_IRXjkOtJQ-bTIGa1WbvUF_2LF4bjghjyXt4YrHaRvw,1170
|
@@ -70,7 +71,7 @@ examples/ollama_example/basic.py,sha256=EPbsigOF4xBDBgLgAD0EzPo737ycVm7aXZr7F5Xt
|
|
70
71
|
examples/openai_example/__init__.py,sha256=6faH7wTegSozKmS89sd1Tgv8AcEH0GfKkC7YaBWA8tg,849
|
71
72
|
examples/openai_example/async_tool_calling_nonstreaming.py,sha256=H1-CrNfNDfqAkB5wEipITXlW2OsYL7XD5uQb6k3C6ps,3865
|
72
73
|
examples/openai_example/async_tool_calling_streaming.py,sha256=LaSKmn_Unv55eTHXYdEmKjo39eNuB3ASOBV-m8U1HfU,7136
|
73
|
-
examples/openai_example/chat_completion.py,sha256=
|
74
|
+
examples/openai_example/chat_completion.py,sha256=lOp5BK-LXj0g1ErP3Ry6moUVMDkpbF-f6S4uqwNbhCo,1217
|
74
75
|
examples/openai_example/chat_completion_tool_choice.py,sha256=rkOjbFnIJ5hWWHWg-aTSek41UN2PBfufGpdaFhkWYj8,2356
|
75
76
|
examples/openai_example/embeddings_create.py,sha256=kcOZpl5nhHo_NC-3n2yKX5W8mAzNfut43mSy1BmQJUI,555
|
76
77
|
examples/openai_example/function_calling.py,sha256=zz-JdCcpP7uCXG21EYXF1Y39IKj6gYt2fOP5N_ywpnc,2338
|
@@ -95,18 +96,19 @@ examples/vertexai_example/main.py,sha256=gndId5X5ksD-ycxnAWMdEqIDbLc3kz5Vt8vm4YP
|
|
95
96
|
examples/weaviate_example/__init__.py,sha256=8JMDBsRSEV10HfTd-YC7xb4txBjD3la56snk-Bbg2Kw,618
|
96
97
|
examples/weaviate_example/query_text.py,sha256=wPHQTc_58kPoKTZMygVjTj-2ZcdrIuaausJfMxNQnQc,127162
|
97
98
|
langtrace_python_sdk/__init__.py,sha256=VZM6i71NR7pBQK6XvJWRelknuTYUhqwqE7PlicKa5Wg,1166
|
98
|
-
langtrace_python_sdk/langtrace.py,sha256=
|
99
|
-
langtrace_python_sdk/version.py,sha256=
|
99
|
+
langtrace_python_sdk/langtrace.py,sha256=YJUHbxNjhtlQvTbkmN-tqmGiKp3Yog70KR7GVlhIr7c,8936
|
100
|
+
langtrace_python_sdk/version.py,sha256=t_d6fGpbp-4uYw6IIW6eCTz39jbZes5f7hJjns8ZIZk,23
|
100
101
|
langtrace_python_sdk/constants/__init__.py,sha256=3CNYkWMdd1DrkGqzLUgNZXjdAlM6UFMlf_F-odAToyc,146
|
101
102
|
langtrace_python_sdk/constants/exporter/langtrace_exporter.py,sha256=5MNjnAOg-4am78J3gVMH6FSwq5N8TOj72ugkhsw4vi0,46
|
102
103
|
langtrace_python_sdk/constants/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
104
|
langtrace_python_sdk/constants/instrumentation/anthropic.py,sha256=YX3llt3zwDY6XrYk3CB8WEVqgrzRXEw_ffyk56JoF3k,126
|
104
105
|
langtrace_python_sdk/constants/instrumentation/chroma.py,sha256=hiPGYdHS0Yj4Kh3eaYBbuCAl_swqIygu80yFqkOgdak,955
|
105
106
|
langtrace_python_sdk/constants/instrumentation/cohere.py,sha256=tf9sDfb5K3qOAHChEE5o8eYWPZ1io58VsOjZDCZPxfw,577
|
106
|
-
langtrace_python_sdk/constants/instrumentation/common.py,sha256=
|
107
|
+
langtrace_python_sdk/constants/instrumentation/common.py,sha256=yqSheP9Yx_otzrau3KgdMSNHMvBpWzt2ahifoDTbLCg,1045
|
107
108
|
langtrace_python_sdk/constants/instrumentation/embedchain.py,sha256=HodCJvaFjILoOG50OwFObxfVxt_8VUaIAIqvgoN3tzo,278
|
108
109
|
langtrace_python_sdk/constants/instrumentation/gemini.py,sha256=UAmfgg9FM7uNeOCdPfWlir6OIH-8BoxFGPRpdBd9ZZs,358
|
109
110
|
langtrace_python_sdk/constants/instrumentation/groq.py,sha256=VFXmIl4aqGY_fS0PAmjPj_Qm7Tibxbx7Ur_e7rQpqXc,134
|
111
|
+
langtrace_python_sdk/constants/instrumentation/litellm.py,sha256=bMAlpY2scFe6Lql0Nl7euGNSO9QEV5Uzne12hnw3mSE,449
|
110
112
|
langtrace_python_sdk/constants/instrumentation/mistral.py,sha256=9PlmcC5P5_BHJ-zsX1xekht6rSm7arTin58HAfdYvLk,730
|
111
113
|
langtrace_python_sdk/constants/instrumentation/ollama.py,sha256=H_-S0xjqRsi5qSp7mAlK7Y9NlQ3BqOkG6ASogqqgdJY,212
|
112
114
|
langtrace_python_sdk/constants/instrumentation/openai.py,sha256=uEOH5UXapU2DSf2AdgXTRhhJEHGWXUNFkUGD5QafflM,1164
|
@@ -117,7 +119,7 @@ langtrace_python_sdk/constants/instrumentation/weaviate.py,sha256=gtv-JBxvNGClEM
|
|
117
119
|
langtrace_python_sdk/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
120
|
langtrace_python_sdk/extensions/langtrace_exporter.py,sha256=UFupNL03zklVd5penpsfXjbWSb5qB39mEv2BY2wczSs,6307
|
119
121
|
langtrace_python_sdk/extensions/langtrace_filesystem.py,sha256=34fZutG28EJ66l67OvTGsydAH3ZpXgikdE7hVLqBpG4,7863
|
120
|
-
langtrace_python_sdk/instrumentation/__init__.py,sha256=
|
122
|
+
langtrace_python_sdk/instrumentation/__init__.py,sha256=U2uQxrczJzPxZUFaRniN2iEK5ujRk7QadG7iM0sLDEc,1696
|
121
123
|
langtrace_python_sdk/instrumentation/anthropic/__init__.py,sha256=donrurJAGYlxrSRA3BIf76jGeUcAx9Tq8CVpah68S0Y,101
|
122
124
|
langtrace_python_sdk/instrumentation/anthropic/instrumentation.py,sha256=ndXdruI0BG7n75rsuEpKjfzePxrZxg40gZ39ONmD_v4,1845
|
123
125
|
langtrace_python_sdk/instrumentation/anthropic/patch.py,sha256=ztPN4VZujoxYOKhTbFnup7Ibms9NAzYCPAJY43NUgKw,4935
|
@@ -136,7 +138,7 @@ langtrace_python_sdk/instrumentation/crewai/instrumentation.py,sha256=5Umzq8zjEn
|
|
136
138
|
langtrace_python_sdk/instrumentation/crewai/patch.py,sha256=C2OKKPC-pzfzZWxPc74kHdYsKTX9yRhOgVY47WY9KN8,9109
|
137
139
|
langtrace_python_sdk/instrumentation/dspy/__init__.py,sha256=tM1srfi_QgyCzrde4izojMrRq2Wm7Dj5QUvVQXIJzkk,84
|
138
140
|
langtrace_python_sdk/instrumentation/dspy/instrumentation.py,sha256=o8URiDvCbZ8LL0I-4xKHkn_Ms2sETBRpn-gOliv3xzQ,2929
|
139
|
-
langtrace_python_sdk/instrumentation/dspy/patch.py,sha256=
|
141
|
+
langtrace_python_sdk/instrumentation/dspy/patch.py,sha256=H7zF4PVdtepOSpzJuEcckKUjnZQYKlY7yhn3dk6xbpY,10458
|
140
142
|
langtrace_python_sdk/instrumentation/embedchain/__init__.py,sha256=5L6n8-brMnRWZ0CMmHEuN1mrhIxrYLNtxRy0Ujc-hOY,103
|
141
143
|
langtrace_python_sdk/instrumentation/embedchain/instrumentation.py,sha256=dShwm0duy25IvL7g9I_v-2oYuyh2fadeiJqXtXBay-8,1987
|
142
144
|
langtrace_python_sdk/instrumentation/embedchain/patch.py,sha256=ovvBrtqUDwGSmSgK_S3pOOrDa4gkPSFG-HvmsxqmJE8,3627
|
@@ -158,6 +160,10 @@ langtrace_python_sdk/instrumentation/langchain_core/patch.py,sha256=CXEfbq6E88X_
|
|
158
160
|
langtrace_python_sdk/instrumentation/langgraph/__init__.py,sha256=eitlHloY-aZ4ZuIEJx61AadEA3G7siyecP-V-lziAr8,101
|
159
161
|
langtrace_python_sdk/instrumentation/langgraph/instrumentation.py,sha256=SUZZhWSIbcfsF1S5NtEqW8QzkRM_pKAuXB7pwk5tsOU,2526
|
160
162
|
langtrace_python_sdk/instrumentation/langgraph/patch.py,sha256=PGe1ZywXctB_yYqnp8AtD8Xqj7EZ087-S5_2vLRYhEQ,4987
|
163
|
+
langtrace_python_sdk/instrumentation/litellm/__init__.py,sha256=8uziCc56rFSRiPkYcrcBRbtppOANkZ7uZssCKAl2MKk,97
|
164
|
+
langtrace_python_sdk/instrumentation/litellm/instrumentation.py,sha256=Km2q_yfZU6nSqPEXG2xbtTSjqv7xSS92Kxqzw-GtQno,2655
|
165
|
+
langtrace_python_sdk/instrumentation/litellm/patch.py,sha256=6ed50KrSC-2Upoh12BlcqfRVzZ1iXcTr8U9cVh9LhvU,24263
|
166
|
+
langtrace_python_sdk/instrumentation/litellm/types.py,sha256=aVkoa7tmAbYfyOhnyMrDaVjQuwhmRNLMthlNtKMtWX8,4311
|
161
167
|
langtrace_python_sdk/instrumentation/llamaindex/__init__.py,sha256=rHvuqpuQKLj57Ow7vuKRqxAN5jT0b5NBeHwhXbbnRa4,103
|
162
168
|
langtrace_python_sdk/instrumentation/llamaindex/instrumentation.py,sha256=8iAg-Oxwf2W4S60qRfO5mvzORYxublgq7FdGWqUB4q8,2965
|
163
169
|
langtrace_python_sdk/instrumentation/llamaindex/patch.py,sha256=548hzPyT_k-2wmt9AArv4JzTT4j4AGKJq5Ar2bWv7o8,4615
|
@@ -181,7 +187,7 @@ langtrace_python_sdk/instrumentation/vertexai/__init__.py,sha256=ZzKxB7bl0FaRlgJ
|
|
181
187
|
langtrace_python_sdk/instrumentation/vertexai/instrumentation.py,sha256=Keeb1D7nJDYu33w6H8Q8jLS7OOJtSIHqngvJMipWqJo,1143
|
182
188
|
langtrace_python_sdk/instrumentation/vertexai/patch.py,sha256=vPxwuSKgA3cUtelgot4XZEox8AD4ehsi3bNTKD_HS_M,4394
|
183
189
|
langtrace_python_sdk/instrumentation/weaviate/__init__.py,sha256=Mc-Je6evPo-kKQzerTG7bd1XO5JOh4YGTE3wBxaUBwg,99
|
184
|
-
langtrace_python_sdk/instrumentation/weaviate/instrumentation.py,sha256=
|
190
|
+
langtrace_python_sdk/instrumentation/weaviate/instrumentation.py,sha256=ow081UHPLZqsmMrVjbzNoZ0tU2JComhTCz_x1xhdWTU,2558
|
185
191
|
langtrace_python_sdk/instrumentation/weaviate/patch.py,sha256=aWLDbNGz35V6XQUv4lkMD0O689suqh6KdTa33VDtUkE,6905
|
186
192
|
langtrace_python_sdk/types/__init__.py,sha256=VnfLV5pVHIB9VRIpEwIDQjWSPEAqQKnq6VNbqsm9W3Q,4287
|
187
193
|
langtrace_python_sdk/utils/__init__.py,sha256=O-Ra9IDd1MnxihdQUC8HW_wYFhk7KbTCK2BIl02yacQ,2935
|
@@ -235,8 +241,8 @@ tests/pinecone/cassettes/test_query.yaml,sha256=b5v9G3ssUy00oG63PlFUR3JErF2Js-5A
|
|
235
241
|
tests/pinecone/cassettes/test_upsert.yaml,sha256=neWmQ1v3d03V8WoLl8FoFeeCYImb8pxlJBWnFd_lITU,38607
|
236
242
|
tests/qdrant/conftest.py,sha256=9n0uHxxIjWk9fbYc4bx-uP8lSAgLBVx-cV9UjnsyCHM,381
|
237
243
|
tests/qdrant/test_qdrant.py,sha256=pzjAjVY2kmsmGfrI2Gs2xrolfuaNHz7l1fqGQCjp5_o,3353
|
238
|
-
langtrace_python_sdk-2.3.
|
239
|
-
langtrace_python_sdk-2.3.
|
240
|
-
langtrace_python_sdk-2.3.
|
241
|
-
langtrace_python_sdk-2.3.
|
242
|
-
langtrace_python_sdk-2.3.
|
244
|
+
langtrace_python_sdk-2.3.22.dist-info/METADATA,sha256=nVVecbmqTGT_8puoT55JzFEOe2zT9TI-9HJ9Eqd5S7U,15861
|
245
|
+
langtrace_python_sdk-2.3.22.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
246
|
+
langtrace_python_sdk-2.3.22.dist-info/entry_points.txt,sha256=1_b9-qvf2fE7uQNZcbUei9vLpFZBbbh9LrtGw95ssAo,70
|
247
|
+
langtrace_python_sdk-2.3.22.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
248
|
+
langtrace_python_sdk-2.3.22.dist-info/RECORD,,
|
File without changes
|
{langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/entry_points.txt
RENAMED
File without changes
|
{langtrace_python_sdk-2.3.20.dist-info → langtrace_python_sdk-2.3.22.dist-info}/licenses/LICENSE
RENAMED
File without changes
|