Build grounded AI systems with Calypso RAG.
Learn how to use Calypso RAG to load grounded knowledge, configure hosted RAG agents, test them in Playground, and deploy them through MCP, the Upload API, n8n, and the web widget.
rag_chat_request.js
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "YOUR_CALYPSO_API_KEY",
baseURL: "https://api.calypso.so/v1"
});
const response = await client.responses.create({
model: "calypso-rag-agent",
input: "Summarize the grounded knowledge available in this workspace."
});
console.log(response.output_text);Follow the same operating loop as the live product
Knowledge, Agent Builder, Playground, and integrations are documented in the same order users encounter them.
The product loop
Follow the Calypso RAG workflow.
Move through the product in the same order the work happens: source the knowledge, shape the agent, validate it, deploy it, then review results.
Workspace
Load knowledge
Add files, websites, Q&A, and other grounded sources.
Start with sources you trust.
Agent Builder
Configure agents
Create one or more scoped RAG agents with linked sources, roles, and logic.
Build clear role-based agents.
Playground
Validate behavior
Test the saved agent with a real project API key before launch.
Confirm it is ready.
Integrations
Deploy anywhere
Deploy the same grounded agent through MCP, the Upload API, n8n, or the widget.
One policy, many surfaces.
Docs map
Navigate by product responsibility.
Each section maps to a real job in the RAG workflow.
Start clean
Getting started
Learn the product, create a project API key, and get to a working grounded flow fast.
Operate the workspace
Workspace
Work through Knowledge, Agent Builder, and Playground in the right order.
Deploy the same policy
Integrations
Reuse one grounded agent through MCP, the Upload API, n8n, and the web widget.
Keep the contract clear
Reference
Use reference pages for model IDs, profiles, policy behavior, and troubleshooting.
Start from the live product
Use the docs like an operator, not like a brochure.
Start with Quick Start, move into Workspace, validate in Playground, then deploy through the integration surface that matches your actual use case.