Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.funky.dev/llms.txt

Use this file to discover all available pages before exploring further.

Every sub-agent is configured with a model and a system prompt. Pass them when you call create_subagent.

Model

Choose the model that powers your sub-agent. Pass the model ID via the model parameter.
ProviderModelModel ID
GoogleGemini 3.1 Progemini-3.1-pro
GoogleGemini 3 Flashgemini-3-flash
GoogleGemini 3 Flash Litegemini-3-flash-lite
AnthropicClaude Sonnet 4.6claude-sonnet-4-6
AnthropicClaude Opus 4.7claude-opus-4-7
OpenAIGPT-5.5gpt-5.5
sub_agent = client.create_subagent(model="claude-opus-4-7")

System prompt

Set a system prompt to shape how your sub-agent behaves — its role, tone, constraints, or output format. Pass it via the system_prompt parameter.
sub_agent = client.create_subagent(
    model="claude-opus-4-7",
    system_prompt="You are a senior code reviewer. Respond only with structured JSON findings.",
)
The system prompt is applied for the lifetime of the sub-agent and cannot be changed after creation.