CN8 is an AI gateway: a single proxy layer that gives you access to AI capabilities — chatbots with RAG, multi-agent orchestration, LLM completions, dubbing, TTS, media generation, and production-grade video/audio processing — all through one consistent API with unified auth, billing, and usage tracking.
Agent Services
agent
Multi-step AI flows where the supervisor routes to sub-agents based on trigger keywords/description; sub-agents have their own action profile and optional per-sub-agent RAG.
The Agent API lets you build flows where a supervisor routes user messages to specialist sub-agents. Each sub-agent has trigger (keywords + description), priority, action profile (persona/goal/response_style), its own model, and optionally RAG over a specific collection_key. The chat response includes routing_info so you can see which action was picked and why.
Create a supervisor (core-agent-create) with model_name, temperature, optional collection_ids
Create one or more sub-agents (core-agent-subagent-create) with trigger, action, optional use_rag + collection_key
Send messages with core-agent-chat (agent_key + message + optional conversation_key); set stream:true for SSE
Inspect or delete conversations via core-agent-conversation* endpoints