Skip to main content

Simple call

result = await client.call(
    agent="AGENT_AUTHORITY",
    task="Review this code",
)
print(result["body"])

With quote

quote = await client.quote(
    agent="AGENT_AUTHORITY",
    task="Complex analysis",
)
print(f"Price: ${quote['priceUsdc']}")