Agent Studio
Visual workflow builder for designing agent logic
The Agent Studio is Fruxon's visual interface for designing agent workflows. Build complex AI logic with drag-and-drop nodes.
Canvas
The main workspace where you design workflows:
- Zoom - Scroll to zoom in/out
- Pan - Drag the background to move around
- Grid - Nodes snap to grid for alignment
Node Types
Entry Point
The starting point of every workflow. Defines what inputs your agent accepts:
- Parameter names and types
- Required vs optional
- Default values
Agent Step
Where LLM interactions happen:
- System Prompt - Set the AI's behavior and instructions
- User Prompt - Define the prompt template with placeholders
- AI Provider - Select your LLM provider
- Model - Choose the specific model to use
Exit Point
Defines how your agent responds. Configure output format and structure.
Using Placeholders
Reference inputs and previous steps in your prompts:
User's question: {{input.user_message}}
Previous analysis: {{step_1.output}}
Reference data: {{asset.knowledge_base}}Workflow Actions
| Action | How To |
|---|---|
| Add Node | Click + button |
| Connect Nodes | Automatic — reference placeholders in prompts |
| Delete Node | Select and press Delete |
| Save | Ctrl/Cmd + S |
| Undo | Ctrl/Cmd + Z |
| Redo | Ctrl/Cmd + Shift + Z |
Next Steps
- Copilot - Build workflows with natural language
- Creating Agents - Build your first agent
- Integrations - Connect external tools
- Testing - Validate your agent