Skip to content

Commit

Permalink
Merge branch 'development' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikscale3 committed Dec 1, 2024
2 parents d43358a + 698d2ff commit fa7b13b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"AZURE": "Azure",
"CHROMA": "Chroma",
"CREWAI": "CrewAI",
"DEEPSEEK": "DeepSeek",
"DSPY": "DSPy",
"GROQ": "Groq",
"LANGCHAIN": "Langchain",
Expand Down
2 changes: 2 additions & 0 deletions src/langtrace_python_sdk/instrumentation/openai/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@ def traced_method(
service_provider = SERVICE_PROVIDERS["GROQ"]
elif "x.ai" in get_base_url(instance):
service_provider = SERVICE_PROVIDERS["XAI"]
elif "deepseek" in get_base_url(instance):
service_provider = SERVICE_PROVIDERS["DEEPSEEK"]
llm_prompts = []
for item in kwargs.get("messages", []):
tools = get_tool_calls(item)
Expand Down
2 changes: 1 addition & 1 deletion src/langtrace_python_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.3.10"
__version__ = "3.3.11"

0 comments on commit fa7b13b

Please sign in to comment.