Files
adk-python/contributing/samples/ma_seq/sub_agents/code_writer_agent.yaml
T
2025-08-11 18:09:55 -07:00

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