Skip to main content

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
Google:
  • Gemini 3 Pro Preview โ€” Latest flagship with enhanced reasoning
  • Gemini Flash โ€” Fast responses for real-time applications
OpenAI:
  • GPT-5.1 โ€” Advanced reasoning and coding
  • GPT-4.1 โ€” Reliable general-purpose model
Open Source:
  • Kimi โ€” Default chat model with excellent context handling
  • Various models via Fireworks and other providers
Models are continuously updated. Check the builder for the latest available options.

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.