You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/llmobs/llmobs.go
+26-6Lines changed: 26 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ var (
36
36
errLLMObsNotEnabled=errors.New("LLMObs is not enabled. Ensure the tracer has been started with the option tracer.WithLLMObsEnabled(true) or set DD_LLMOBS_ENABLED=true")
37
37
errAgentlessRequiresAPIKey=errors.New("LLMOBs agentless mode requires a valid API key - set the DD_API_KEY env variable to configure one")
38
38
errMLAppRequired=errors.New("ML App is required for sending LLM Observability data")
39
+
errAgentModeNotSupported=errors.New("DD_LLMOBS_AGENTLESS_ENABLED has been configured to false but the agent is not available or does not support LLMObs")
0 commit comments