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
|[OpenAI](getting_started/completion_config/openai/)|`completion_config` with OpenAI, automatic metrics tracking |
18
+
|Provider |Example | Description |
19
+
| --- | --- | --- |
20
+
| Bedrock|[Converse](getting_started/bedrock/converse/)|`completion_config` with AWS Bedrock Converse API, metrics tracking |
21
+
| Gemini|[Generate Content](getting_started/gemini/generate_content/)|`completion_config` with Google GenAI, metrics tracking |
22
+
| LangChain|[Invoke](getting_started/langchain/invoke/)|`completion_config` with LangChain, async metrics tracking |
23
+
| LangGraph |[ReAct Agent](getting_started/langgraph/react_agent/)|`agent_config` with a single LangGraph ReAct agent, tool calling, metrics tracking |
Copy file name to clipboardExpand all lines: features/create_agent/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Managed Agent Example
1
+
# Create Agent Example
2
2
3
-
This example demonstrates how to use LaunchDarkly's managed agent functionality, which handles model creation, metric tracking, and judge evaluation dispatch automatically.
3
+
This example demonstrates how to use LaunchDarkly's `create_agent` method, which handles model creation, metric tracking, and judge evaluation dispatch automatically.
Copy file name to clipboardExpand all lines: features/create_agent/create_agent_example.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ async def async_main():
71
71
)
72
72
73
73
ifnotagent:
74
-
print(f"*** Failed to create agent for key: {agent_config_key}")
74
+
print(f"AI config '{agent_config_key}' is disabled. Verify the config key exists in your LaunchDarkly project and is not targeting a disabled variation.")
Copy file name to clipboardExpand all lines: features/create_agent_graph/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Managed Agent Graph Example
1
+
# Create Agent Graph Example
2
2
3
-
This example demonstrates how to use LaunchDarkly's managed agent graph functionality, which orchestrates multi-node agent workflows with automatic metric tracking at both the graph and per-node level.
3
+
This example demonstrates how to use LaunchDarkly's `create_agent_graph` method, which orchestrates multi-node agent workflows with automatic metric tracking at both the graph and per-node level.
Copy file name to clipboardExpand all lines: features/create_judge/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Judge Example (Direct Evaluation)
1
+
# Create Judge Example
2
2
3
-
This example demonstrates how to use LaunchDarkly's judge functionality to evaluate specific input/output pairs directly, without an associated chat session.
3
+
This example demonstrates how to use LaunchDarkly's `create_judge` method to evaluate specific input/output pairs directly, without an associated chat session.
0 commit comments