Skip to content

VikingBot API

When OpenViking Server starts with --with-bot, it proxies VikingBot's core interaction endpoints below /bot/v1. These endpoints return 503 when Bot is not enabled.

Code entry points:

  • openviking/server/routers/bot.py - OpenViking Server proxy and identity forwarding
  • bot/vikingbot/channels/openapi.py - VikingBot Gateway routes
  • bot/vikingbot/channels/openapi_models.py - request, response, and SSE event models

API Reference

health()

Check whether the Bot Gateway is available.

HTTP API

bash
curl http://localhost:1933/bot/v1/health

Response Example

json
{
  "status": "healthy",
  "version": "0.1.0",
  "timestamp": "2026-07-24T09:00:00"
}

chat()

Send a message and wait for the complete reply. Omit session_id to create a new session.

FieldTypeRequiredDefaultDescription
messagestringYes-Non-empty user message
session_idstringNoGeneratedExisting session to continue
contextarrayNonullAdditional messages containing role and content
need_replybooleanNotrueWhether the Bot should reply
disabled_toolsstring[]No[]Tool names disabled for this request
channel_idstringNonullMulti-channel routing identifier

HTTP API

bash
curl -X POST http://localhost:1933/bot/v1/chat \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-key" \
  -d '{"message":"Summarize my project progress","session_id":"optional-session-id"}'

CLI

bash
ov chat -m "Summarize my project progress"

Response Example

json
{
  "session_id": "session-id",
  "response_id": "response-id",
  "message": "Here is the current project summary…",
  "events": null,
  "relevant_memories": null,
  "token_usage": {
    "prompt_tokens": 120,
    "completion_tokens": 42,
    "total_tokens": 162
  },
  "timestamp": "2026-07-24T09:00:00"
}

chat_stream()

Return reasoning, tool calls, content deltas, and the final response as Server-Sent Events. The request fields are the same as chat(); the Gateway enables streaming automatically.

HTTP API

bash
curl -N -X POST http://localhost:1933/bot/v1/chat/stream \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-key" \
  -d '{"message":"Analyze the current knowledge base"}'

CLI

bash
ov chat -m "Analyze the current knowledge base"

SSE Response Example

Each message uses data: <json> format. The X-VikingBot-Session-ID response header contains the session ID.

text
data: {"event":"reasoning_delta","data":"Inspecting the knowledge base…","timestamp":"2026-07-24T09:00:00"}

data: {"event":"content_delta","data":"The knowledge base contains","timestamp":"2026-07-24T09:00:01"}

data: {"event":"response","data":{"content":"The knowledge base contains…","response_id":"response-id"},"timestamp":"2026-07-24T09:00:02"}

event can be reasoning, reasoning_delta, tool_call, tool_result, content_delta, iteration, or response.

compile()

Start an asynchronous, Skill-driven Compile task. VikingBot loads the selected Skill, reads the supplied OpenViking directories with the authenticated user identity, runs a task-scoped AgentLoop, and commits validated outputs below the target URI.

FieldTypeRequiredDefaultDescription
fromstring[]Yes-One or more source directories
tostringYes-Target Resource or Memory directory, or a supported Skill namespace
skillstringYes-Skill directory or its SKILL.md URI
reasonstringNoSkill-driven defaultAdditional instructions for this Compile run

HTTP API

POST /bot/v1/compile
bash
curl -X POST http://localhost:1933/bot/v1/compile \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-key" \
  -d '{
    "from": ["viking://resources/research"],
    "to": "viking://resources/research-wiki",
    "skill": "viking://user/default/skills/research-compiler",
    "reason": "Track the historical progress and preserve supporting evidence."
  }'

CLI

bash
ov compile \
  --from viking://resources/research \
  --to viking://resources/research-wiki \
  --skill viking://user/default/skills/research-compiler \
  --reason "Track the historical progress and preserve supporting evidence." \
  --wait

--wait polls the status endpoint until the task reaches a terminal state. --timeout limits only the local wait and does not cancel the server task.

The direct backend runs Compile exec commands with the Bot host's permissions. bot.sandbox.backends.direct.allow_compile_exec defaults to false, so Compile omits exec while ordinary Wiki and artifact generation can still run through file tools. A Skill that declares requires.bins or requires.env fails with SKILL_CAPABILITY_UNAVAILABLE before any command probe runs. Setting the option to true is an explicit unsafe opt-in; isolated backends with filesystem and network policies are recommended for CLI-dependent Skills. Admission overflow returns 429 RESOURCE_EXHAUSTED.

Response Example

The HTTP endpoint returns 202 Accepted:

json
{
  "status": "ok",
  "result": {
    "task_id": "cmp_01abc",
    "status": "accepted",
    "to": "viking://resources/research-wiki"
  }
}

compile_status()

Get the current state and, for a terminal task, its result or error. A task is visible only to the principal that created it; a missing task and a task owned by another principal both return 404.

HTTP API

GET /bot/v1/compile/{task_id}
bash
curl http://localhost:1933/bot/v1/compile/cmp_01abc \
  -H "X-API-Key: your-key"

Response Example

json
{
  "status": "ok",
  "result": {
    "task_id": "cmp_01abc",
    "status": "completed",
    "stage": "completed",
    "created_at": "2026-07-28T08:00:00Z",
    "updated_at": "2026-07-28T08:02:30Z",
    "result": {
      "from": ["viking://resources/research"],
      "to": "viking://resources/research-wiki",
      "skill": "viking://user/default/skills/research-compiler",
      "okf_version": "0.1",
      "created": ["viking://resources/research-wiki/Progress.md"],
      "updated": [],
      "unchanged": [],
      "page_count": 1,
      "link_count": 0,
      "warnings": []
    }
  }
}

Task lifecycle values are:

StatusTypical stages
acceptedqueued
runningloading_skill, collecting_context, agent, rendering
committingwriting, refreshing
completedcompleted
failedStage where the failure occurred; the response contains error.code and error.message

feedback()

Submit explicit feedback for an existing assistant response.

FieldTypeRequiredDescription
session_idstringYesSession containing the target response
response_idstringYesTarget assistant response ID
feedback_typestringYesthumb_up, thumb_down, or rating
feedback_scorenumberConditionalRequired when feedback_type=rating
feedback_reasonstringNoFeedback reason label
feedback_textstringNoFree-form feedback
channel_idstringNoMulti-channel routing identifier

HTTP API

bash
curl -X POST http://localhost:1933/bot/v1/feedback \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-key" \
  -d '{
    "session_id":"session-id",
    "response_id":"response-id",
    "feedback_type":"thumb_up"
  }'

Response Example

json
{
  "accepted": true,
  "response_id": "response-id",
  "session_id": "session-id",
  "feedback_type": "thumb_up",
  "feedback_delay_sec": 8.42,
  "timestamp": "2026-07-24T09:00:08"
}

A missing target response returns 404. Rating feedback without feedback_score returns a request validation error.

Client Scope

The standard OpenViking Python, TypeScript, and Go SDKs do not currently wrap the Bot proxy. Chat and Compile are available through the ov CLI and HTTP. The VikingBot Gateway also exposes Session and Channel APIs; see the VikingBot documentation.

Released under the Apache-2.0 License.