config.skills parameter when executing agents:
Multiple Skills
Pass multiple skills in theconfig.skills array:
Inline Skills
Instead of referencing a server-stored skill by name, you can send the skill bundle directly in the request as a base64-encoded zip. Settype to "inline" and provide a source object:
AgentSkill inline fields.
Synchronous vs Batch
- Synchronous (
batch=False): Blocks until the agent completes. Best for short tasks. - Batch (
batch=True): Returns immediately with a prediction ID. Poll for results. Best for long-running tasks like video analysis.