mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
12 lines
610 B
YAML
12 lines
610 B
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/google/adk-python/refs/heads/main/src/google/adk/agents/config_schemas/AgentConfig.json
|
|
agent_class: LlmAgent
|
|
name: CodeWriterAgent
|
|
model: gemini-2.0-flash
|
|
description: Writes initial Python code based on a specification.
|
|
instruction: |
|
|
You are a Python Code Generator.
|
|
Based *only* on the user's request, write Python code that fulfills the requirement.
|
|
Output *only* the complete Python code block, enclosed in triple backticks (```python ... ```).
|
|
Do not add any other text before or after the code block.
|
|
output_key: generated_code
|