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
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]>
Copy file name to clipboardExpand all lines: docs/agents/custom-agents.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,7 +111,7 @@ This method orchestrates the sub-agents using standard Python async/await and co
111
111
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.
112
112
113
113
```python
114
-
GEMINI_FLASH = "gemini-2.0-flash"# Define model constant
114
+
GEMINI_2_FLASH = "gemini-2.0-flash"# Define model constant
0 commit comments