langtrace-python-sdk 2.2.27__tar.gz → 2.2.28__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.2.27 → langtrace_python_sdk-2.2.28}/PKG-INFO +2 -2
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/pyproject.toml +1 -1
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langgraph/patch.py +1 -1
- langtrace_python_sdk-2.2.28/src/langtrace_python_sdk/version.py +1 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/cassettes/test_async_chat_completion_streaming.yaml +32 -28
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/cassettes/test_async_image_generation.yaml +27 -24
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/cassettes/test_chat_completion.yaml +24 -26
- langtrace_python_sdk-2.2.28/src/tests/openai/cassettes/test_chat_completion_streaming.yaml +200858 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/cassettes/test_image_generation.yaml +26 -24
- langtrace_python_sdk-2.2.27/src/langtrace_python_sdk/version.py +0 -1
- langtrace_python_sdk-2.2.27/src/tests/openai/cassettes/test_chat_completion_streaming.yaml +0 -152
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/.gitignore +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/LICENSE +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/README.md +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/anthropic_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/anthropic_example/completion.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/chroma_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/chroma_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/cohere_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/cohere_example/chat.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/cohere_example/chat_stream.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/cohere_example/embed.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/cohere_example/rerank.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/cohere_example/tools.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/simple_agent/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/simple_agent/agents.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/simple_agent/main.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/simple_agent/tasks.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/trip_planner/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/trip_planner/agents.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/trip_planner/main.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/trip_planner/tasks.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/trip_planner/tools/calculator.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/crewai_example/trip_planner/tools/search_tools.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/dspy_example/math_problems_cot.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/dspy_example/math_problems_cot_parallel.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/dspy_example/program_of_thought_basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/dspy_example/quiz_gen.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/dspy_example/react.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/fastapi_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/fastapi_example/basic_route.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/gemini_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/gemini_example/function_tools.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/gemini_example/main.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/hiveagent_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/inspect_ai_example/basic_eval.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/langchain_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/langchain_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/langchain_example/groq_example.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/langchain_example/langgraph_example.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/langchain_example/sagemaker.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/langchain_example/tool.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/litellm_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/llamaindex_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/llamaindex_example/agent.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/llamaindex_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/llamaindex_example/data/abramov.txt +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/mistral_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/mistral_example/complete.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/mistral_example/complete_async.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/mistral_example/embeddings.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/ollama_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/ollama_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/async_tool_calling_nonstreaming.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/async_tool_calling_streaming.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/chat_completion.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/chat_completion_tool_choice.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/embeddings_create.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/function_calling.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/images_edit.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/images_generate.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/resources/lounge_flamingo.png +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/resources/mask.png +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/send_user_feedback.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/tool_calling.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/tool_calling_nonstreaming.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/openai_example/tool_calling_streaming.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/otlp_example/otlp_basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/otlp_example/otlp_with_langtrace.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/perplexity_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/pinecone_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/pinecone_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/qdrant_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/qdrant_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/routellm_example/basic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/vertexai_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/vertexai_example/main.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/weaviate_example/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/examples/weaviate_example/query_text.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/exporter/langtrace_exporter.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/anthropic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/chroma.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/cohere.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/common.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/gemini.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/groq.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/mistral.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/ollama.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/openai.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/pinecone.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/qdrant.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/vertexai.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/constants/instrumentation/weaviate.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/extensions/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/extensions/langtrace_exporter.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/extensions/langtrace_filesystem.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/anthropic/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/anthropic/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/anthropic/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/chroma/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/chroma/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/chroma/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/cohere/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/cohere/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/cohere/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/crewai/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/crewai/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/crewai/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/dspy/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/dspy/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/dspy/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/gemini/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/gemini/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/gemini/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/groq/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/groq/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/groq/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain_community/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain_community/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain_community/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain_core/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain_core/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langchain_core/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langgraph/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/langgraph/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/llamaindex/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/llamaindex/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/llamaindex/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/mistral/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/mistral/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/mistral/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/ollama/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/ollama/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/ollama/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/openai/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/openai/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/openai/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/pinecone/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/pinecone/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/pinecone/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/qdrant/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/qdrant/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/qdrant/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/vertexai/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/vertexai/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/vertexai/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/weaviate/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/weaviate/instrumentation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/instrumentation/weaviate/patch.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/langtrace.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/types/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/langtrace_sampler.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/llm.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/misc.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/prompt_registry.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/sdk_version_checker.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/silently_fail.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/types.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/langtrace_python_sdk/utils/with_root_span.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/run_example.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/__init__.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/anthropic/cassettes/test_anthropic.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/anthropic/cassettes/test_anthropic_streaming.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/anthropic/cassettes/test_async_anthropic_streaming.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/anthropic/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/anthropic/test_anthropic.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/chroma/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/chroma/test_chroma.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/cassettes/test_cohere_chat.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/cassettes/test_cohere_chat_streaming.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/cassettes/test_cohere_embed.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/cassettes/test_cohere_rerank.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/test_cohere_chat.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/test_cohere_embed.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/cohere/test_cohere_rerank.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/groq/cassettes/test_async_chat_completion.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/groq/cassettes/test_async_chat_completion_streaming.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/groq/cassettes/test_chat_completion.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/groq/cassettes/test_chat_completion_streaming.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/groq/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/groq/test_groq.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/langchain/cassettes/test_langchain.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/langchain/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/langchain/test_langchain.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/test_chat_completion.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/test_embeddings.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/openai/test_image_generation.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/pinecone/cassettes/test_query.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/pinecone/cassettes/test_upsert.yaml +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/pinecone/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/pinecone/test_pinecone.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/qdrant/conftest.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/src/tests/qdrant/test_qdrant.py +0 -0
- {langtrace_python_sdk-2.2.27 → langtrace_python_sdk-2.2.28}/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.2.
|
|
3
|
+
Version: 2.2.28
|
|
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>
|
|
@@ -33,7 +33,7 @@ Requires-Dist: langchain-community; extra == 'dev'
|
|
|
33
33
|
Requires-Dist: langchain-openai; extra == 'dev'
|
|
34
34
|
Requires-Dist: mistralai; extra == 'dev'
|
|
35
35
|
Requires-Dist: ollama; extra == 'dev'
|
|
36
|
-
Requires-Dist: openai; extra == 'dev'
|
|
36
|
+
Requires-Dist: openai==1.30.1; extra == 'dev'
|
|
37
37
|
Requires-Dist: pinecone-client; extra == 'dev'
|
|
38
38
|
Requires-Dist: python-dotenv; extra == 'dev'
|
|
39
39
|
Requires-Dist: qdrant-client; extra == 'dev'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.2.28"
|
|
@@ -6,7 +6,7 @@ interactions:
|
|
|
6
6
|
accept:
|
|
7
7
|
- application/json
|
|
8
8
|
accept-encoding:
|
|
9
|
-
- gzip, deflate
|
|
9
|
+
- gzip, deflate
|
|
10
10
|
connection:
|
|
11
11
|
- keep-alive
|
|
12
12
|
content-length:
|
|
@@ -16,7 +16,7 @@ interactions:
|
|
|
16
16
|
host:
|
|
17
17
|
- api.openai.com
|
|
18
18
|
user-agent:
|
|
19
|
-
- AsyncOpenAI/Python 1.
|
|
19
|
+
- AsyncOpenAI/Python 1.30.1
|
|
20
20
|
x-stainless-arch:
|
|
21
21
|
- arm64
|
|
22
22
|
x-stainless-async:
|
|
@@ -26,7 +26,7 @@ interactions:
|
|
|
26
26
|
x-stainless-os:
|
|
27
27
|
- MacOS
|
|
28
28
|
x-stainless-package-version:
|
|
29
|
-
- 1.
|
|
29
|
+
- 1.30.1
|
|
30
30
|
x-stainless-runtime:
|
|
31
31
|
- CPython
|
|
32
32
|
x-stainless-runtime-version:
|
|
@@ -35,66 +35,66 @@ interactions:
|
|
|
35
35
|
uri: https://api.openai.com/v1/chat/completions
|
|
36
36
|
response:
|
|
37
37
|
body:
|
|
38
|
-
string: 'data: {"id":"chatcmpl-
|
|
38
|
+
string: 'data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}]}
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
data: {"id":"chatcmpl-
|
|
41
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"This"},"logprobs":null,"finish_reason":null}]}
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
data: {"id":"chatcmpl-
|
|
44
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
45
45
|
is"},"logprobs":null,"finish_reason":null}]}
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
data: {"id":"chatcmpl-
|
|
48
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
49
49
|
a"},"logprobs":null,"finish_reason":null}]}
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
data: {"id":"chatcmpl-
|
|
52
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
53
53
|
test"},"logprobs":null,"finish_reason":null}]}
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
data: {"id":"chatcmpl-
|
|
56
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]}
|
|
57
57
|
|
|
58
58
|
|
|
59
|
-
data: {"id":"chatcmpl-
|
|
59
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
60
60
|
This"},"logprobs":null,"finish_reason":null}]}
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
data: {"id":"chatcmpl-
|
|
63
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
64
64
|
is"},"logprobs":null,"finish_reason":null}]}
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
data: {"id":"chatcmpl-
|
|
67
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
68
68
|
a"},"logprobs":null,"finish_reason":null}]}
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
data: {"id":"chatcmpl-
|
|
71
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
72
72
|
test"},"logprobs":null,"finish_reason":null}]}
|
|
73
73
|
|
|
74
74
|
|
|
75
|
-
data: {"id":"chatcmpl-
|
|
75
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]}
|
|
76
76
|
|
|
77
77
|
|
|
78
|
-
data: {"id":"chatcmpl-
|
|
78
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
79
79
|
This"},"logprobs":null,"finish_reason":null}]}
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
data: {"id":"chatcmpl-
|
|
82
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
83
83
|
is"},"logprobs":null,"finish_reason":null}]}
|
|
84
84
|
|
|
85
85
|
|
|
86
|
-
data: {"id":"chatcmpl-
|
|
86
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
87
87
|
a"},"logprobs":null,"finish_reason":null}]}
|
|
88
88
|
|
|
89
89
|
|
|
90
|
-
data: {"id":"chatcmpl-
|
|
90
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"
|
|
91
91
|
test"},"logprobs":null,"finish_reason":null}]}
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
data: {"id":"chatcmpl-
|
|
94
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]}
|
|
95
95
|
|
|
96
96
|
|
|
97
|
-
data: {"id":"chatcmpl-
|
|
97
|
+
data: {"id":"chatcmpl-A1AmANY7TGsx9lezpQOx8JNTT13TY","object":"chat.completion.chunk","created":1724843114,"model":"gpt-4-0613","system_fingerprint":null,"choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}]}
|
|
98
98
|
|
|
99
99
|
|
|
100
100
|
data: [DONE]
|
|
@@ -105,33 +105,37 @@ interactions:
|
|
|
105
105
|
CF-Cache-Status:
|
|
106
106
|
- DYNAMIC
|
|
107
107
|
CF-RAY:
|
|
108
|
-
-
|
|
108
|
+
- 8ba3d335793f1bd8-BOM
|
|
109
109
|
Connection:
|
|
110
110
|
- keep-alive
|
|
111
111
|
Content-Type:
|
|
112
112
|
- text/event-stream; charset=utf-8
|
|
113
113
|
Date:
|
|
114
|
-
- Wed,
|
|
114
|
+
- Wed, 28 Aug 2024 11:05:14 GMT
|
|
115
115
|
Server:
|
|
116
116
|
- cloudflare
|
|
117
117
|
Set-Cookie:
|
|
118
|
-
- __cf_bm=
|
|
119
|
-
path=/; expires=Wed,
|
|
118
|
+
- __cf_bm=nXSzNkiyyYYUW5K4kkG_5S1Cu2CW_gufpypYqAtDhXY-1724843114-1.0.1.1-KB34l0CfjGeVtsqaBjhsRF3KIXSkZCC6fLqyMXCsPvmHWQ9EVopZ8hLHQ4S0POQQ5.7lkEaFb9JjBZjJfgBleQ;
|
|
119
|
+
path=/; expires=Wed, 28-Aug-24 11:35:14 GMT; domain=.api.openai.com; HttpOnly;
|
|
120
120
|
Secure; SameSite=None
|
|
121
|
-
- _cfuvid=
|
|
121
|
+
- _cfuvid=8L1dZYomenUDny1OLXAiqN6yOSuI9h3X6yA1d7S0G4U-1724843114334-0.0.1.1-604800000;
|
|
122
122
|
path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None
|
|
123
123
|
Transfer-Encoding:
|
|
124
124
|
- chunked
|
|
125
|
+
X-Content-Type-Options:
|
|
126
|
+
- nosniff
|
|
127
|
+
access-control-expose-headers:
|
|
128
|
+
- X-Request-ID
|
|
125
129
|
alt-svc:
|
|
126
130
|
- h3=":443"; ma=86400
|
|
127
131
|
openai-organization:
|
|
128
132
|
- scale3-1
|
|
129
133
|
openai-processing-ms:
|
|
130
|
-
- '
|
|
134
|
+
- '160'
|
|
131
135
|
openai-version:
|
|
132
136
|
- '2020-10-01'
|
|
133
137
|
strict-transport-security:
|
|
134
|
-
- max-age=
|
|
138
|
+
- max-age=15552000; includeSubDomains; preload
|
|
135
139
|
x-ratelimit-limit-requests:
|
|
136
140
|
- '10000'
|
|
137
141
|
x-ratelimit-limit-tokens:
|
|
@@ -145,7 +149,7 @@ interactions:
|
|
|
145
149
|
x-ratelimit-reset-tokens:
|
|
146
150
|
- 1ms
|
|
147
151
|
x-request-id:
|
|
148
|
-
-
|
|
152
|
+
- req_7db02982c898e0a9750e8f8be365e791
|
|
149
153
|
status:
|
|
150
154
|
code: 200
|
|
151
155
|
message: OK
|
|
@@ -21,7 +21,7 @@ interactions:
|
|
|
21
21
|
host:
|
|
22
22
|
- api.openai.com
|
|
23
23
|
user-agent:
|
|
24
|
-
- AsyncOpenAI/Python 1.
|
|
24
|
+
- AsyncOpenAI/Python 1.30.1
|
|
25
25
|
x-stainless-arch:
|
|
26
26
|
- arm64
|
|
27
27
|
x-stainless-async:
|
|
@@ -31,34 +31,35 @@ interactions:
|
|
|
31
31
|
x-stainless-os:
|
|
32
32
|
- MacOS
|
|
33
33
|
x-stainless-package-version:
|
|
34
|
-
- 1.
|
|
34
|
+
- 1.30.1
|
|
35
35
|
x-stainless-runtime:
|
|
36
36
|
- CPython
|
|
37
37
|
x-stainless-runtime-version:
|
|
38
|
-
- 3.
|
|
38
|
+
- 3.12.3
|
|
39
39
|
method: POST
|
|
40
40
|
uri: https://api.openai.com/v1/images/generations
|
|
41
41
|
response:
|
|
42
42
|
body:
|
|
43
43
|
string: !!binary |
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
/
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
44
|
+
H4sIAAAAAAAAA1xS227jNhB991cMDNhPli+SbMsBjCLebtBsAhTderduiqIYkSOJEUUqHNKOuth/
|
|
45
|
+
X9CLtkhfSB6cuZ0z/DICGAtH6EmOb2C1TfMiz1b5dhYJiR7HN/DHCADgy/UEGDs6Kyb5V+9s1/vx
|
|
46
|
+
DYzvO6yVIUBoCJ2/oOuUqYEFGYKK0AcXMYIInqDEcgAmBOs9uTkcG8XglRlmUOlQVQNcBwqOQDFI
|
|
47
|
+
pyofs0lTjcbrAawB5RlKFO0MLso3V6iV95rgQmVJEnq8MPggWpKA0josY+KZ3DW2Ci4REZEE9rZD
|
|
48
|
+
0czh3kODDBpdTTNwNhg5A4PqTEADMXCPrtXE31v6hkAEpywrP4CtYLDBN3P4rVGaQHl4tkMVtB6g
|
|
49
|
+
0hY9x6ljjndoXoLSM/AXZVp9NYoQOLgKBUEwktw10qFUaATF4hHXVksyIAO3s9hAq7rxV8NJ6gF8
|
|
50
|
+
4+yFAUEH9s4GjmW5Ia2hcraLjoC38ZqBpM4a9g6vzkZHnu1ZoQY0EoLpFHtsv1sWd5Ro1RJIxX1U
|
|
51
|
+
q6yZj2f//IbgdPwCjfc93ywWFpVErQl71TsrWQSel9qWc2EdzS/KSHvhuSG/6J06o6eFdXVyeN6c
|
|
52
|
+
Tq+vd3X7gX6/Mw2n5qSXxi0Ck0t+eul659qHh/Pnz3/fHx8Ox7w58erXherq5PZwl7unX94ZQv9p
|
|
53
|
+
9frx9fRuk5WHbt6b+gf2+3SZ5smySNLiuFpOstvlepLd5tunKdMbLn3D9Xs35fO/Act8ym5fTh0L
|
|
54
|
+
uVdGK0Px7feqw5oWvamn3Fol93K9XG82W5nIjVglOS4xKVFsk7Uociy22/WuKqbceiX3mBdC4HqT
|
|
55
|
+
0EZikhc5JVis8mQniny3WaelKLMY+t+U22OaTbLbLMrIdk9Tbt9I+D/J+3LK7VsRqt6/fxRPz8Mk
|
|
56
|
+
PTzWd/f+IetlUb4vCux2+eNRcPGx303Sw7BYT9LDzx+Gl3aS/Ti+bvvrCODP0dfRNwAAAP//AwCM
|
|
57
|
+
rHe4NQQAAA==
|
|
57
58
|
headers:
|
|
58
59
|
CF-Cache-Status:
|
|
59
60
|
- DYNAMIC
|
|
60
61
|
CF-RAY:
|
|
61
|
-
-
|
|
62
|
+
- 8ba3d398fd213b34-BOM
|
|
62
63
|
Connection:
|
|
63
64
|
- keep-alive
|
|
64
65
|
Content-Encoding:
|
|
@@ -66,17 +67,19 @@ interactions:
|
|
|
66
67
|
Content-Type:
|
|
67
68
|
- application/json
|
|
68
69
|
Date:
|
|
69
|
-
-
|
|
70
|
+
- Wed, 28 Aug 2024 11:05:48 GMT
|
|
70
71
|
Server:
|
|
71
72
|
- cloudflare
|
|
72
73
|
Set-Cookie:
|
|
73
|
-
- __cf_bm=
|
|
74
|
-
path=/; expires=
|
|
74
|
+
- __cf_bm=g5qknHnjVP7kkaGrWc6RqvVjSmiWgOaOEweDFDGSQ7g-1724843148-1.0.1.1-mngSNlnO8YV2mQ1tzcQJaymcDItIVaCm8v4U4I46I5yjb_9HwSpMSa9uVwuamzQbVGGdE02258WeQMqYo.c72w;
|
|
75
|
+
path=/; expires=Wed, 28-Aug-24 11:35:48 GMT; domain=.api.openai.com; HttpOnly;
|
|
75
76
|
Secure; SameSite=None
|
|
76
|
-
- _cfuvid=
|
|
77
|
+
- _cfuvid=ZD.yrekeTVlEqlHli7ZLelPz4jSGof3VcPe8t8nLvTA-1724843148132-0.0.1.1-604800000;
|
|
77
78
|
path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None
|
|
78
79
|
Transfer-Encoding:
|
|
79
80
|
- chunked
|
|
81
|
+
X-Content-Type-Options:
|
|
82
|
+
- nosniff
|
|
80
83
|
access-control-allow-origin:
|
|
81
84
|
- '*'
|
|
82
85
|
alt-svc:
|
|
@@ -84,13 +87,13 @@ interactions:
|
|
|
84
87
|
openai-organization:
|
|
85
88
|
- scale3-1
|
|
86
89
|
openai-processing-ms:
|
|
87
|
-
- '
|
|
90
|
+
- '17618'
|
|
88
91
|
openai-version:
|
|
89
92
|
- '2020-10-01'
|
|
90
93
|
strict-transport-security:
|
|
91
|
-
- max-age=
|
|
94
|
+
- max-age=15552000; includeSubDomains; preload
|
|
92
95
|
x-request-id:
|
|
93
|
-
-
|
|
96
|
+
- req_c88dfb23fd705f1c8769503ac4ca534e
|
|
94
97
|
status:
|
|
95
98
|
code: 200
|
|
96
99
|
message: OK
|
|
@@ -16,7 +16,7 @@ interactions:
|
|
|
16
16
|
host:
|
|
17
17
|
- api.openai.com
|
|
18
18
|
user-agent:
|
|
19
|
-
- OpenAI/Python 1.
|
|
19
|
+
- OpenAI/Python 1.30.1
|
|
20
20
|
x-stainless-arch:
|
|
21
21
|
- arm64
|
|
22
22
|
x-stainless-async:
|
|
@@ -26,29 +26,27 @@ interactions:
|
|
|
26
26
|
x-stainless-os:
|
|
27
27
|
- MacOS
|
|
28
28
|
x-stainless-package-version:
|
|
29
|
-
- 1.
|
|
29
|
+
- 1.30.1
|
|
30
30
|
x-stainless-runtime:
|
|
31
31
|
- CPython
|
|
32
32
|
x-stainless-runtime-version:
|
|
33
|
-
- 3.
|
|
33
|
+
- 3.12.3
|
|
34
34
|
method: POST
|
|
35
35
|
uri: https://api.openai.com/v1/chat/completions
|
|
36
36
|
response:
|
|
37
37
|
body:
|
|
38
38
|
string: !!binary |
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
39
|
+
H4sIAAAAAAAAAwAAAP//hJDNbsIwEITveYqVz4AIBFpyQ71x6QFUVa0q5IQlcXG8lndRWxDvXjmE
|
|
40
|
+
n556seT5dkaze0wAlNmoHFRZaykbb/vzdN6MXndvi2JyeKSX2dfCLt3T8+pQLKVWveig4hNLubgG
|
|
41
|
+
JTXeohhyZ1wG1IIxNX0YZY/ZOB1OW9DQBm20VV76WX84TcedoyZTIqsc3hMAgGP7xm5ug98qh2Hv
|
|
42
|
+
ojTIrCtU+XUIQAWyUVGa2bBoJ6p3gyU5QdfWXdWGwTBoEGQZwD//+5SA2z3r2N7tre3007WWpcoH
|
|
43
|
+
KrjjV31rnOF6HVAzuViBhbxq6SkB+GjX3//ZSPlAjZe10A5dDEyzc5y6HfoOTjooJNre9NEs6fop
|
|
44
|
+
/mHBZr01rsLgg2lv0W5xSn4BAAD//wMA/o3fKwICAAA=
|
|
45
45
|
headers:
|
|
46
46
|
CF-Cache-Status:
|
|
47
47
|
- DYNAMIC
|
|
48
48
|
CF-RAY:
|
|
49
|
-
-
|
|
50
|
-
Cache-Control:
|
|
51
|
-
- no-cache, must-revalidate
|
|
49
|
+
- 8ba3d309397848fe-BOM
|
|
52
50
|
Connection:
|
|
53
51
|
- keep-alive
|
|
54
52
|
Content-Encoding:
|
|
@@ -56,45 +54,45 @@ interactions:
|
|
|
56
54
|
Content-Type:
|
|
57
55
|
- application/json
|
|
58
56
|
Date:
|
|
59
|
-
-
|
|
57
|
+
- Wed, 28 Aug 2024 11:05:08 GMT
|
|
60
58
|
Server:
|
|
61
59
|
- cloudflare
|
|
62
60
|
Set-Cookie:
|
|
63
|
-
- __cf_bm
|
|
64
|
-
path=/; expires=
|
|
61
|
+
- __cf_bm=2htioKVBseZckwL6tCrFITeY9xzQEUoNUsKCApe9hHs-1724843108-1.0.1.1-UOCC3VYA9zk4dg_lKVKaU9ekjx9H3a0JgmTuWSGzWSu7YHjDvlxxhl5J0OrNZ1jX_.0n2IGB306spo4VYa2P.g;
|
|
62
|
+
path=/; expires=Wed, 28-Aug-24 11:35:08 GMT; domain=.api.openai.com; HttpOnly;
|
|
65
63
|
Secure; SameSite=None
|
|
66
|
-
- _cfuvid=
|
|
64
|
+
- _cfuvid=xZfheRamXHAjCWMg8Cx1pHFmXE6muAGfp3VHbLNA7ag-1724843108209-0.0.1.1-604800000;
|
|
67
65
|
path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None
|
|
68
66
|
Transfer-Encoding:
|
|
69
67
|
- chunked
|
|
70
|
-
|
|
71
|
-
-
|
|
68
|
+
X-Content-Type-Options:
|
|
69
|
+
- nosniff
|
|
70
|
+
access-control-expose-headers:
|
|
71
|
+
- X-Request-ID
|
|
72
72
|
alt-svc:
|
|
73
73
|
- h3=":443"; ma=86400
|
|
74
|
-
openai-model:
|
|
75
|
-
- gpt-4-0613
|
|
76
74
|
openai-organization:
|
|
77
75
|
- scale3-1
|
|
78
76
|
openai-processing-ms:
|
|
79
|
-
- '
|
|
77
|
+
- '1142'
|
|
80
78
|
openai-version:
|
|
81
79
|
- '2020-10-01'
|
|
82
80
|
strict-transport-security:
|
|
83
|
-
- max-age=
|
|
81
|
+
- max-age=15552000; includeSubDomains; preload
|
|
84
82
|
x-ratelimit-limit-requests:
|
|
85
83
|
- '10000'
|
|
86
84
|
x-ratelimit-limit-tokens:
|
|
87
|
-
- '
|
|
85
|
+
- '1000000'
|
|
88
86
|
x-ratelimit-remaining-requests:
|
|
89
87
|
- '9999'
|
|
90
88
|
x-ratelimit-remaining-tokens:
|
|
91
|
-
- '
|
|
89
|
+
- '999975'
|
|
92
90
|
x-ratelimit-reset-requests:
|
|
93
91
|
- 6ms
|
|
94
92
|
x-ratelimit-reset-tokens:
|
|
95
|
-
-
|
|
93
|
+
- 1ms
|
|
96
94
|
x-request-id:
|
|
97
|
-
-
|
|
95
|
+
- req_1c42b761d436b2000d23f8929b26492c
|
|
98
96
|
status:
|
|
99
97
|
code: 200
|
|
100
98
|
message: OK
|