Documentation
Everything you need to build with gutt
Getting Started
Quick start guide to integrate gutt into your agent infrastructure
API Reference
Complete API documentation for developers
CLI Tools
Command-line interface for managing your gutt instances
Guides & Tutorials
Step-by-step tutorials and best practices
Quick Start
1. Install gutt
npm install @gutt/core
2. Initialize your agent
import { gutt } from '@gutt/core';
const agent = new gutt({apiKey: 'your-api-key'});
const agent = new gutt({apiKey: 'your-api-key'});
3. Capture understanding
const understanding = await agent.capture({context: 'your-data'});
4. Generate everything else
const output = await agent.generate(understanding);