There was an error while loading. Please reload this page.
1 parent 3db8912 commit 3f5590cCopy full SHA for 3f5590c
example-apps/chatbot-rag-app/api/llm_integrations.py
@@ -50,6 +50,10 @@ def init_mistral_chat(temperature):
50
51
52
def init_cohere_chat(temperature):
53
+ # Cohere is not yet in EDOT. Use the Langtrace Python SDK instead
54
+ from langtrace_python_sdk.instrumentation import CohereInstrumentation
55
+
56
+ CohereInstrumentation().instrument()
57
return ChatCohere(model=os.getenv("CHAT_MODEL"), temperature=temperature)
58
59
0 commit comments