langtrace-python-sdk 1.2.11__tar.gz → 1.2.12__tar.gz
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.
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/PKG-INFO +2 -2
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/README.md +1 -1
- langtrace_python_sdk-1.2.12/src/langtrace_python_sdk/version.py +1 -0
- langtrace_python_sdk-1.2.11/src/langtrace_python_sdk/version.py +0 -1
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/.gitignore +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/LICENSE +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/pyproject.toml +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/anthropic_example/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/anthropic_example/completion.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/chroma_example/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/chroma_example/basic.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/langchain_example/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/langchain_example/basic.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/langchain_example/tool.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/llamaindex_example/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/llamaindex_example/basic.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/llamaindex_example/data/abramov.txt +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/chat_completion.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/embeddings_create.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/function_calling.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/images_generate.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/pinecone_example/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/pinecone_example/basic.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/exporter/langtrace_exporter.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/instrumentation/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/instrumentation/anthropic.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/instrumentation/chroma.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/instrumentation/common.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/instrumentation/openai.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/constants/instrumentation/pinecone.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/extensions/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/extensions/langtrace_exporter.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/anthropic/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/anthropic/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/anthropic/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/chroma/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/chroma/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/chroma/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain_community/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain_community/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain_community/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain_core/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain_core/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/langchain_core/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/llamaindex/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/llamaindex/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/llamaindex/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/openai/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/openai/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/openai/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/pinecone/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/pinecone/instrumentation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/instrumentation/pinecone/patch.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/langtrace.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/utils/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/utils/llm.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/utils/with_root_span.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/run_example.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/__init__.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/chroma/test_chroma.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/openai/test_chat_completion.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/openai/test_image_generation.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/pinecone/test_pinecone.py +0 -0
- {langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: langtrace-python-sdk
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.12
|
|
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>
|
|
@@ -175,7 +175,7 @@ Langtrace automatically captures traces from the following vendors:
|
|
|
175
175
|
|
|
176
176
|
## Contributions
|
|
177
177
|
|
|
178
|
-
We welcome contributions to this project. To get started, fork this repository and start developing. To get involved, join our
|
|
178
|
+
We welcome contributions to this project. To get started, fork this repository and start developing. To get involved, join our [Discord](https://discord.langtrace.ai) workspace.
|
|
179
179
|
|
|
180
180
|
---
|
|
181
181
|
|
|
@@ -147,7 +147,7 @@ Langtrace automatically captures traces from the following vendors:
|
|
|
147
147
|
|
|
148
148
|
## Contributions
|
|
149
149
|
|
|
150
|
-
We welcome contributions to this project. To get started, fork this repository and start developing. To get involved, join our
|
|
150
|
+
We welcome contributions to this project. To get started, fork this repository and start developing. To get involved, join our [Discord](https://discord.langtrace.ai) workspace.
|
|
151
151
|
|
|
152
152
|
---
|
|
153
153
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.2.12"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.2.11"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/chroma_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/chroma_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/langchain_example/basic.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/langchain_example/tool.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/llamaindex_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/chat_completion.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/embeddings_create.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/function_calling.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/openai/images_generate.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/examples/pinecone_example/basic.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/langtrace.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/langtrace_python_sdk/utils/llm.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/openai/test_chat_completion.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-1.2.11 → langtrace_python_sdk-1.2.12}/src/tests/pinecone/test_pinecone.py
RENAMED
|
File without changes
|
|
File without changes
|