Skip to content
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"