Voice AI
All recipes
GoBeginner

Golang Quickstart

Build a basic Agora Conversational AI agent in Go.

Recipe prompt

Paste into Cursor, Claude Code, v0, or your coding agent
Use with your coding agent
You are implementing the "Golang Quickstart" recipe in this project.

Read the recipe markdown first:
https://raw.githubusercontent.com/AgoraIO-Conversational-AI/agent-quickstart-go/main/docs/ai/RECIPE.md

Use the source repository for cross-reference:
https://github.com/AgoraIO-Conversational-AI/agent-quickstart-go

Build this recipe into the user's app using the markdown as the implementation guide. Inspect related source files through the repository links when the recipe points to them. Ask before installing new dependencies.

Recipe

Rendered from the configured recipe markdown.

Raw

recipeversion: 1.0.0 recipestatus: experimental extension_points:

  • id: agent.prompt

name: Ada system prompt and greeting

  • id: agent.pipeline

name: managed STT, LLM, TTS, VAD, and session settings

  • id: api.routes

name: Go backend routes exposed through Next rewrites

  • id: ui.conversation

name: pre-call, conversation, transcript, metrics, and microphone UI

  • id: verification.contracts

name: API, proxy, local Go, and backend verification harnesses invariants:

  • id: api.browser-paths

summary: browser code calls /api/* and never the Go backend URL directly

  • id: routing.rewrite-only

summary: Next rewrites proxy /api/* to Go; no client/app/api route handlers exist

  • id: secrets.server-only

summary: AGORAAPPCERTIFICATE remains server-side

  • id: uid.concrete-rtm

summary: RTM login and renewal use concrete non-zero UIDs stable_contracts:

  • id: env.required

summary: AGORAAPPID and AGORAAPPCERTIFICATE are required by the Go server

  • id: api.config

summary: GET /api/getconfig returns appid, token, uid, channelname, and agentuid

  • id: api.lifecycle

summary: POST /api/startAgent starts a session; POST /api/stopAgent stops it by agentId

  • id: verification.make

summary: root Make targets are the canonical setup, dev, build, test, and verification interface ---

Recipe Contract

This repo is a base recipe for a Go-backed Agora Conversational AI quickstart. It publishes the extension points that downstream recipes can customize while keeping the browser contract, secret boundary, and local verification flow stable.

Recipe Role

  • Role: base quickstart recipe.
  • Target audience: developers bootstrapping a production-style Conversational AI app with a Go Gin backend and Next.js web client.
  • Reuse model: clone, bind project, run, then customize backend agent behavior or browser UI.

Recipe Scope

This base recipe provides a copyable split-process starter with:

  • Go Gin token generation and managed agent lifecycle.
  • Next.js browser UI with RTC audio, RTM events, transcript, metrics, and connection status.
  • Rewrite-only /api/* browser facade that hides backend placement.
  • Managed default STT, LLM, and TTS provider configuration.
  • Contract and local smoke verification that do not require live Agora calls.

Baseline Implementation Guidance

This repository is the Go-backed Agora quickstart baseline for this recipe. Agents should use this repo's source and progressive disclosure docs as the starting point, then customize.

Do not recreate Agora ConvoAI integration from memory. Provider schemas, SDK builder fields, token behavior, and RTM event details can drift. For a new baseline implementation, follow L1/L2/from_scratch_bootstrap.md while copying verified patterns from this repo.

Extension Points

IDSurfaceFilesIntended Changes
agent.promptAgent identity and first utteranceserver/agent.go, server/.env.exampleChange adaPrompt, the fallback greeting, or document AGENT_GREETING defaults.
agent.pipelineManaged provider chain and session behaviorserver/agent.go, docs/ai/L1/L2/managed_agent_config.mdTune Deepgram STT, OpenAI LLM, MiniMax TTS, VAD, RTM parameters, metrics, idle timeout, or session expiry.
api.routesBackend and browser API contractserver/main.go, client/next.config.ts, client/src/services/api.ts, client/scripts/verify-api-contracts.tsAdd or change route handlers, rewrites, request bodies, response payloads, and contract checks together.
ui.conversationBrowser conversation experienceclient/src/components/, client/src/lib/conversation.ts, client/src/types/conversation.tsCustomize pre-call UI, connection details, transcript rendering, metrics, visualizer, mic controls, or end-call behavior.
verification.contractsLocal confidence checksMakefile, package.json, client/scripts/, server/main_test.go, server/cmd/fake-server/main.goExtend checks when routes, request shapes, or local runtime assumptions change.

Invariants

IDRuleWhy It Matters
api.browser-pathsBrowser code calls /api/get_config, /api/startAgent, and /api/stopAgent; it does not call AGENT_BACKEND_URL directly.Keeps local and deployed browser code identical.
routing.rewrite-onlyclient/next.config.ts owns /api/* rewrites; client/app/api/**/route.ts must not be introduced unless the architecture intentionally changes.Prevents route handlers from shadowing rewrites and splitting behavior.
secrets.server-onlyAGORA_APP_CERTIFICATE stays in the Go server environment and never in client/ or NEXT_PUBLIC_* variables.Protects token signing credentials.
uid.concrete-rtmBackend-generated UIDs must be non-zero before RTM login or renewal.RTM tokens are tied to a concrete login subject; 0 is not valid for RTM.
token.renewal-two-uidsRenewal keeps separate RTC and RTM token requests when their UIDs can differ.Prevents RTM renewal with a token minted for the wrong UID.
agent.managed-defaultsManaged Deepgram STT, OpenAI LLM, and MiniMax TTS remain the default path unless a recipe explicitly adds BYOK provider configuration.Keeps the quickstart runnable with Agora-managed provider setup.

Stable Contracts

ContractShape
Setupmake setup prepares env template, Go deps, and pnpm workspace deps.
Local devmake dev starts Gin on localhost:8000 and Next on localhost:3000 with AGENT_BACKEND_URL=http://localhost:8000.
Required envGo server requires AGORA_APP_ID and AGORA_APP_CERTIFICATE; optional AGENT_GREETING and PORT.
Rewrite envNext requires AGENT_BACKEND_URL anywhere /api/* should resolve to the Go backend.
Config APIGET /api/get_config?channel=&uid= returns { code, msg, data: { app_id, token, uid, channel_name, agent_uid } }.
Start APIPOST /api/startAgent sends { channelName, rtcUid, userUid } and returns data.agent_id.
Stop APIPOST /api/stopAgent sends { agentId }; the client skips the request when the id is empty.
Verificationmake verify is web-focused; make verify-local adds local Go-backed checks; make verify-backend runs Go tests.

Internal / Subject to Change

  • Component composition inside client/src/components/ can change as long as LandingPage still owns bootstrap and ConversationComponent still owns active RTC/RTM orchestration.
  • Exact UI copy, Tailwind classes, logos, layout components, and visualizer presentation are not stable recipe contracts.
  • Managed provider model names and VAD numbers are recipe defaults, not permanent API guarantees; update docs and tests when changing them.
  • server/agent.go may be split into more files later, but the Go server remains the owner of Agora SDK calls and secret-backed token generation.
  • Verification internals under client/scripts/ may change, but route contracts and Make target names should remain stable for downstream recipes.
  • L1/01_setup.md — setup, env, and command reference.
  • L1/02_architecture.md — request flow and component topology.
  • L1/05_workflows.md — common modification workflows.
  • L1/06_interfaces.md — route, rewrite, env, and event contracts.
  • L1/L2/from_scratch_bootstrap.md — implementation map for recreating the Go-backed quickstart recipe.
  • L1/L2/managed_agent_config.md — full agent config detail.
  • L1/L2/session_lifecycle.md — RTC/RTM/session orchestration.
  • L1/L2/verification_scripts.md — verification harness behavior.