langtrace-python-sdk 2.3.11__tar.gz → 2.3.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-2.3.11 → langtrace_python_sdk-2.3.12}/PKG-INFO +1 -7
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/README.md +0 -5
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/pyproject.toml +0 -1
- langtrace_python_sdk-2.3.12/src/langtrace_python_sdk/constants/__init__.py +1 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/langtrace.py +1 -24
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/__init__.py +0 -4
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/sdk_version_checker.py +0 -3
- langtrace_python_sdk-2.3.12/src/langtrace_python_sdk/version.py +1 -0
- langtrace_python_sdk-2.3.11/src/langtrace_python_sdk/constants/__init__.py +0 -2
- langtrace_python_sdk-2.3.11/src/langtrace_python_sdk/version.py +0 -1
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/.gitignore +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/LICENSE +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/anthropic_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/anthropic_example/completion.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/azureopenai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/azureopenai_example/completion.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/chroma_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/chroma_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/chat.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/chat_stream.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/embed.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/rerank.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/tools.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/instagram_post/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/instagram_post/agents.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/instagram_post/main.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/instagram_post/tasks.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/instagram_post/tools/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/instagram_post/tools/browser_tools.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/simple_agent/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/simple_agent/agents.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/simple_agent/main.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/simple_agent/tasks.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/trip_planner/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/trip_planner/agents.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/trip_planner/main.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/trip_planner/tasks.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/trip_planner/tools/calculator.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/trip_planner/tools/search_tools.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/math_problems_cot.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/math_problems_cot_parallel.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/program_of_thought_basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/quiz_gen.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/react.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/embedchain_example/simple.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/fastapi_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/fastapi_example/basic_route.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/gemini_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/gemini_example/function_tools.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/gemini_example/main.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/hiveagent_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/inspect_ai_example/basic_eval.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/groq_example.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/langgraph_example.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/langgraph_example_tools.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/sagemaker.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/tool.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/litellm_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/llamaindex_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/llamaindex_example/agent.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/llamaindex_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/llamaindex_example/data/abramov.txt +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/mistral_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/mistral_example/complete.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/mistral_example/complete_async.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/mistral_example/embeddings.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/ollama_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/ollama_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/async_tool_calling_nonstreaming.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/async_tool_calling_streaming.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/chat_completion.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/chat_completion_tool_choice.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/embeddings_create.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/function_calling.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/images_edit.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/images_generate.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/resources/lounge_flamingo.png +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/resources/mask.png +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/send_user_feedback.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/tool_calling.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/tool_calling_nonstreaming.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/tool_calling_streaming.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/otlp_example/otlp_basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/otlp_example/otlp_with_langtrace.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/perplexity_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/pinecone_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/pinecone_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/qdrant_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/qdrant_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/routellm_example/basic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/vertexai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/vertexai_example/main.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/weaviate_example/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/weaviate_example/query_text.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/exporter/langtrace_exporter.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/anthropic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/chroma.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/cohere.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/common.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/embedchain.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/gemini.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/groq.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/mistral.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/ollama.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/openai.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/pinecone.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/qdrant.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/vertexai.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/constants/instrumentation/weaviate.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/extensions/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/extensions/langtrace_exporter.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/extensions/langtrace_filesystem.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/anthropic/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/anthropic/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/anthropic/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/anthropic/types.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/chroma/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/chroma/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/chroma/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/cohere/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/cohere/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/cohere/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/crewai/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/crewai/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/crewai/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/dspy/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/dspy/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/dspy/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/embedchain/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/embedchain/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/embedchain/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/gemini/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/gemini/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/gemini/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/groq/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/groq/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/groq/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain_community/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain_community/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain_community/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain_core/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain_core/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langchain_core/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langgraph/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langgraph/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/langgraph/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/llamaindex/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/llamaindex/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/llamaindex/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/mistral/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/mistral/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/mistral/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/ollama/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/ollama/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/ollama/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/openai/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/openai/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/openai/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/openai/types.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/pinecone/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/pinecone/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/pinecone/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/qdrant/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/qdrant/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/qdrant/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/vertexai/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/vertexai/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/vertexai/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/weaviate/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/weaviate/instrumentation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/instrumentation/weaviate/patch.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/types/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/langtrace_sampler.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/llm.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/misc.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/prompt_registry.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/silently_fail.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/types.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/with_root_span.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/run_example.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/__init__.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/anthropic/cassettes/test_anthropic.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/anthropic/cassettes/test_anthropic_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/anthropic/cassettes/test_async_anthropic_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/anthropic/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/anthropic/test_anthropic.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/chroma/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/chroma/test_chroma.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/cassettes/test_cohere_chat.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/cassettes/test_cohere_chat_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/cassettes/test_cohere_embed.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/cassettes/test_cohere_rerank.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/test_cohere_chat.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/test_cohere_embed.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/test_cohere_rerank.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/groq/cassettes/test_async_chat_completion.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/groq/cassettes/test_async_chat_completion_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/groq/cassettes/test_chat_completion.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/groq/cassettes/test_chat_completion_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/groq/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/groq/test_groq.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/langchain/cassettes/test_langchain.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/langchain/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/langchain/test_langchain.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/cassettes/test_async_chat_completion_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/cassettes/test_async_image_generation.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/cassettes/test_chat_completion.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/cassettes/test_chat_completion_streaming.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/cassettes/test_image_generation.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/test_chat_completion.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/test_embeddings.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/test_image_generation.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/pinecone/cassettes/test_query.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/pinecone/cassettes/test_upsert.yaml +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/pinecone/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/pinecone/test_pinecone.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/qdrant/conftest.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/qdrant/test_qdrant.py +0 -0
- {langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.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: 2.3.
|
|
3
|
+
Version: 2.3.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>
|
|
@@ -18,7 +18,6 @@ Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.25.0
|
|
|
18
18
|
Requires-Dist: opentelemetry-instrumentation-sqlalchemy>=0.46b0
|
|
19
19
|
Requires-Dist: opentelemetry-instrumentation>=0.47b0
|
|
20
20
|
Requires-Dist: opentelemetry-sdk>=1.25.0
|
|
21
|
-
Requires-Dist: sentry-sdk>=2.14.0
|
|
22
21
|
Requires-Dist: sqlalchemy
|
|
23
22
|
Requires-Dist: tiktoken>=0.1.1
|
|
24
23
|
Requires-Dist: trace-attributes==7.0.4
|
|
@@ -197,10 +196,6 @@ langtrace.init(custom_remote_exporter=<your_exporter>, batch=<True or False>)
|
|
|
197
196
|
| `api_host` | `Optional[str]` | `https://langtrace.ai/` | The API host for the remote exporter. |
|
|
198
197
|
| `disable_instrumentations` | `Optional[DisableInstrumentations]` | `None` | You can pass an object to disable instrumentation for specific vendors ex: `{'only': ['openai']}` or `{'all_except': ['openai']}` |
|
|
199
198
|
|
|
200
|
-
### Error Reporting to Langtrace
|
|
201
|
-
|
|
202
|
-
By default all sdk errors are reported to langtrace via Sentry. This can be disabled by setting the following enviroment variable to `False` like so `LANGTRACE_ERROR_REPORTING=False`
|
|
203
|
-
|
|
204
199
|
### Additional Customization
|
|
205
200
|
|
|
206
201
|
- `@with_langtrace_root_span` - this decorator is designed to organize and relate different spans, in a hierarchical manner. When you're performing multiple operations that you want to monitor together as a unit, this function helps by establishing a "parent" (`LangtraceRootSpan` or whatever is passed to `name`) span. Then, any calls to the LLM APIs made within the given function (fn) will be considered "children" of this parent span. This setup is especially useful for tracking the performance or behavior of a group of operations collectively, rather than individually.
|
|
@@ -282,7 +277,6 @@ prompt = get_prompt_from_registry(<Registry ID>, options={"prompt_version": 1, "
|
|
|
282
277
|
```
|
|
283
278
|
|
|
284
279
|
### Opt out of tracing prompt and completion data
|
|
285
|
-
|
|
286
280
|
By default, prompt and completion data are captured. If you would like to opt out of it, set the following env var,
|
|
287
281
|
|
|
288
282
|
`TRACE_PROMPT_COMPLETION_DATA=false`
|
|
@@ -148,10 +148,6 @@ langtrace.init(custom_remote_exporter=<your_exporter>, batch=<True or False>)
|
|
|
148
148
|
| `api_host` | `Optional[str]` | `https://langtrace.ai/` | The API host for the remote exporter. |
|
|
149
149
|
| `disable_instrumentations` | `Optional[DisableInstrumentations]` | `None` | You can pass an object to disable instrumentation for specific vendors ex: `{'only': ['openai']}` or `{'all_except': ['openai']}` |
|
|
150
150
|
|
|
151
|
-
### Error Reporting to Langtrace
|
|
152
|
-
|
|
153
|
-
By default all sdk errors are reported to langtrace via Sentry. This can be disabled by setting the following enviroment variable to `False` like so `LANGTRACE_ERROR_REPORTING=False`
|
|
154
|
-
|
|
155
151
|
### Additional Customization
|
|
156
152
|
|
|
157
153
|
- `@with_langtrace_root_span` - this decorator is designed to organize and relate different spans, in a hierarchical manner. When you're performing multiple operations that you want to monitor together as a unit, this function helps by establishing a "parent" (`LangtraceRootSpan` or whatever is passed to `name`) span. Then, any calls to the LLM APIs made within the given function (fn) will be considered "children" of this parent span. This setup is especially useful for tracking the performance or behavior of a group of operations collectively, rather than individually.
|
|
@@ -233,7 +229,6 @@ prompt = get_prompt_from_registry(<Registry ID>, options={"prompt_version": 1, "
|
|
|
233
229
|
```
|
|
234
230
|
|
|
235
231
|
### Opt out of tracing prompt and completion data
|
|
236
|
-
|
|
237
232
|
By default, prompt and completion data are captured. If you would like to opt out of it, set the following env var,
|
|
238
233
|
|
|
239
234
|
`TRACE_PROMPT_COMPLETION_DATA=false`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
LANGTRACE_SDK_NAME = "langtrace-python-sdk"
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/langtrace.py
RENAMED
|
@@ -19,7 +19,6 @@ import sys
|
|
|
19
19
|
from typing import Optional
|
|
20
20
|
import importlib.util
|
|
21
21
|
from colorama import Fore
|
|
22
|
-
from langtrace_python_sdk.constants import LANGTRACE_SDK_NAME, SENTRY_DSN
|
|
23
22
|
from opentelemetry import trace
|
|
24
23
|
from opentelemetry.instrumentation.sqlalchemy import SQLAlchemyInstrumentor
|
|
25
24
|
from opentelemetry.sdk.resources import SERVICE_NAME, Resource
|
|
@@ -61,9 +60,8 @@ from langtrace_python_sdk.types import (
|
|
|
61
60
|
InstrumentationMethods,
|
|
62
61
|
InstrumentationType,
|
|
63
62
|
)
|
|
64
|
-
from langtrace_python_sdk.utils import check_if_sdk_is_outdated
|
|
63
|
+
from langtrace_python_sdk.utils import check_if_sdk_is_outdated
|
|
65
64
|
from langtrace_python_sdk.utils.langtrace_sampler import LangtraceSampler
|
|
66
|
-
import sentry_sdk
|
|
67
65
|
|
|
68
66
|
|
|
69
67
|
def init(
|
|
@@ -166,27 +164,6 @@ def init(
|
|
|
166
164
|
provider.add_span_processor(batch_processor_remote)
|
|
167
165
|
|
|
168
166
|
sys.stdout = sys.__stdout__
|
|
169
|
-
if os.environ.get("LANGTRACE_ERROR_REPORTING", "True") == "True":
|
|
170
|
-
sentry_sdk.init(
|
|
171
|
-
dsn=SENTRY_DSN,
|
|
172
|
-
traces_sample_rate=1.0,
|
|
173
|
-
profiles_sample_rate=1.0,
|
|
174
|
-
)
|
|
175
|
-
sdk_options = {
|
|
176
|
-
"service_name": os.environ.get("OTEL_SERVICE_NAME")
|
|
177
|
-
or service_name
|
|
178
|
-
or sys.argv[0],
|
|
179
|
-
"disable_logging": disable_logging,
|
|
180
|
-
"disable_instrumentations": disable_instrumentations,
|
|
181
|
-
"disable_tracing_for_functions": disable_tracing_for_functions,
|
|
182
|
-
"batch": batch,
|
|
183
|
-
"write_spans_to_console": write_spans_to_console,
|
|
184
|
-
"custom_remote_exporter": custom_remote_exporter,
|
|
185
|
-
"sdk_name": LANGTRACE_SDK_NAME,
|
|
186
|
-
"sdk_version": get_sdk_version(),
|
|
187
|
-
"api_host": host,
|
|
188
|
-
}
|
|
189
|
-
sentry_sdk.set_context("sdk_init_options", sdk_options)
|
|
190
167
|
|
|
191
168
|
|
|
192
169
|
def init_instrumentations(
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.3.12"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.3.11"
|
|
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-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/chroma_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/chroma_example/basic.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/chat.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/embed.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/rerank.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/cohere_example/tools.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/crewai_example/basic.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
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/quiz_gen.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/dspy_example/react.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/fastapi_example/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/gemini_example/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/gemini_example/main.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/hiveagent_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/langchain_example/tool.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/litellm_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/llamaindex_example/agent.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/llamaindex_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/mistral_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/mistral_example/complete.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/ollama_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/ollama_example/basic.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/openai_example/__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
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/otlp_example/otlp_basic.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/perplexity_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/pinecone_example/basic.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/qdrant_example/__init__.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/qdrant_example/basic.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/routellm_example/basic.py
RENAMED
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/examples/vertexai_example/main.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.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
|
|
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
|
|
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-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/llm.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/misc.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/langtrace_python_sdk/utils/types.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
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/anthropic/test_anthropic.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
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/test_cohere_chat.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/test_cohere_embed.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/cohere/test_cohere_rerank.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
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/langchain/test_langchain.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/test_chat_completion.py
RENAMED
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/openai/test_embeddings.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langtrace_python_sdk-2.3.11 → langtrace_python_sdk-2.3.12}/src/tests/pinecone/test_pinecone.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|