Skip to content

Commit a33e8d6

Browse files
fix: variable name in custom agents documentation (#125)
Update the variable name in `docs/agents/custom-agents.md`. * Change the variable name to `GEMINI_2_FLASH` on line 114 to maintain consistency with example's code Co-authored-by: Kristopher Overholt <[email protected]>
1 parent 83069be commit a33e8d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/agents/custom-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ This method orchestrates the sub-agents using standard Python async/await and co
111111
These are standard `LlmAgent` definitions, responsible for specific tasks. Their `output_key` parameter is crucial for placing results into the `session.state` where other agents or the custom orchestrator can access them.
112112
113113
```python
114-
GEMINI_FLASH = "gemini-2.0-flash" # Define model constant
114+
GEMINI_2_FLASH = "gemini-2.0-flash" # Define model constant
115115
--8<-- "examples/python/snippets/agents/custom-agent/storyflow_agent.py:llmagents"
116116
```
117117

0 commit comments

Comments
 (0)