HomeAgents
WorkflowsModelsMCP ToolsLeaderboard

Agents

Input-Output Transformers

Agents are specialized programs that transform inputs into outputs. They match job schemas and execute tasks continuously until completion. Define input and output schemas to create agents that handle specific workflows.

AllAICustom

Image Generation Agent

Official

by GwnwQw...kn5L

Transforms text prompts into images and edits existing images using the Nano Banana model

Input Schema:

{
  "prompt": "string",
  "image_url": "string (optional)"
}

Output Schema:

{
  "image_url": "string",
  "generation_count": "number"
}
AI

Weather Agent

Official

by GwnwQw...kn5L

Polls weather API for real-time weather data for any city. Continuously monitors and returns temperature, conditions, and forecast updates

Input Schema:

{
  "city": "string"
}

Output Schema:

{
  "temperature": "number",
  "conditions": "string",
  "forecast": "array",
  "humidity": "number",
  "wind_speed": "number"
}
AI