Sign In
Reference

Documentation for LLMs & AI

Rivet provides optimized documentation formats specifically designed for Large Language Models (LLMs) and AI integration tools.

Available Formats

LLMs.txt (Condensed)

A condensed version of the documentation perfect for quick reference and context-aware AI assistance.

Access: /llms.txt

This format includes:

  • Key concepts and features
  • Essential getting started information
  • Summaries of main functionality
  • Optimized for token efficiency

LLMs-full.txt (Complete)

The complete documentation in a single file, ideal for comprehensive AI assistance and in-depth analysis.

Access: /llms-full.txt

This format includes:

  • Complete documentation content
  • All examples and detailed explanations
  • Full API references and guides
  • Suitable for complex queries and comprehensive understanding

Individual Page Access

Each documentation page is also available as clean markdown by appending .md to any documentation URL path.

Examples

URL Pattern

C++
Original URL: https://rivet.gg/docs/[path] Markdown URL: https://rivet.gg/docs/[path].md

Integration Examples

ChatGPT/Claude Integration

Use the dropdown on any documentation page to:

  • Copy page content directly to clipboard
  • Open the page content in ChatGPT or Claude
  • View the page as raw markdown

Custom AI Tools

Fetch documentation programmatically:

// Get condensed documentation
const condensed = await fetch('https://rivet.gg/llms.txt').then(r => r.text());

// Get complete documentation
const complete = await fetch('https://rivet.gg/llms-full.txt').then(r => r.text());

// Get specific page as markdown
const actorsDoc = await fetch('https://rivet.gg/docs/actors.md').then(r => r.text());
Suggest changes to this page