Customize your cookie preferences

We respect your right to privacy. You can choose not to allow some types of cookies. Your cookie preferences will apply across our website.

We use cookies on our site to enhance your user experience, provide personalized content, and analyze our traffic. Cookie Policy.

    gutt logo

    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'});

    3. Capture understanding

    const understanding = await agent.capture({context: 'your-data'});

    4. Generate everything else

    const output = await agent.generate(understanding);