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.

    Documentation

    Everything you need to build with gutt

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