Anatomy
- Prompts
- System Prompt โ Nonโnegotiable instructions.
- Messages List (toggle) โ Pass conversation history as input/output.
- User Prompt โ Optional preโset prompt for fixedโpurpose Agents.
- Model configuration โ Provider/model, temperature, topโp, max tokens.
- Toolbox โ The set of callable tools made available to the Agent.
Available Models
Triform supports a wide range of AI models: Anthropic:- Claude Haiku 4.5 โ Ultra-fast responses, cost-effective for chat
- Claude Sonnet โ Balanced performance and capability
- Claude Opus โ Maximum reasoning power
- Gemini 3 Pro Preview โ Latest flagship with enhanced reasoning
- Gemini Flash โ Fast responses for real-time applications
- GPT-5.1 โ Advanced reasoning and coding
- GPT-4.1 โ Reliable general-purpose model
- Kimi โ Default chat model with excellent context handling
- Various models via Fireworks and other providers
Good patterns
- Keep System Prompts specific and outcomeโoriented.
- Start with few highโleverage tools; expand gradually.
- Use Messages List when memory/context matters.
- Leverage enhanced tool calling for more reliable agent operations.
Enhanced capabilities
Recent improvements to the Agent system:- Improved tool calling โ More reliable tool usage with better error handling
- Execution visibility โ Real-time execution steps sent to UI for debugging
- Better prompts โ Refined prompt system for clearer agent guidance
- Loop support in tools โ Agent tools can now use iterative operations
Observability
- Executions emit logs, traces, metrics for inspection.
- Use Payloads to reproduce and compare runs after prompt changes.
- Monitor execution steps in real-time through the chat interface.
tip: Tool hygiene โ Name tools by verb + object (fetch_user,summarize_text). Small, predictable tools make plans more reliable.