@octavus/docs 2.13.0 → 2.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,7 @@ This guide will walk you through integrating Octavus into your application in un
17
17
 
18
18
  Before integrating with SDKs, use **Agent Preview** to test your agent directly in the platform:
19
19
 
20
- 1. Open your agent in the platform at `octavus.ai/agents/[agentId]`
20
+ 1. Open your agent in the platform at `octavus.ai/platform/agents/[agentId]`
21
21
  2. Click the **Preview** tab
22
22
  3. Configure session inputs and tool mock responses
23
23
  4. Start a conversation to test agent behavior
@@ -81,7 +81,7 @@ There are two ways to create and manage agents:
81
81
  **Option 1: Platform UI (Recommended for getting started)**
82
82
 
83
83
  1. Go to [octavus.ai](https://octavus.ai) and create an agent in the web editor
84
- 2. Copy the agent ID from the URL (e.g., `octavus.ai/agents/clxyz123abc456`)
84
+ 2. Copy the agent ID from the URL (e.g., `octavus.ai/platform/agents/clxyz123abc456`)
85
85
  3. Add it to your `.env.local`: `OCTAVUS_SUPPORT_AGENT_ID=clxyz123abc456`
86
86
 
87
87
  **Option 2: Local Development with CLI**
@@ -142,7 +142,7 @@ try {
142
142
  if (error instanceof WorkerError) {
143
143
  console.error('Worker failed:', error.message);
144
144
  if (error.sessionId) {
145
- console.error(`Debug: ${client.baseUrl}/sessions/${error.sessionId}`);
145
+ console.error(`Debug: ${client.baseUrl}/platform/sessions/${error.sessionId}`);
146
146
  }
147
147
  }
148
148
  }
@@ -355,7 +355,7 @@ try {
355
355
  if (error instanceof WorkerError) {
356
356
  console.error('Failed:', error.message);
357
357
  if (error.sessionId) {
358
- console.error(`Debug: ${client.baseUrl}/sessions/${error.sessionId}`);
358
+ console.error(`Debug: ${client.baseUrl}/platform/sessions/${error.sessionId}`);
359
359
  }
360
360
  }
361
361
  }
@@ -35,7 +35,7 @@ POST /api/agent-sessions
35
35
  | `agentId` | string | Yes | Agent ID (the `id` field, not `slug`) |
36
36
  | `input` | object | No | Input variables for the agent |
37
37
 
38
- > **Getting the agent ID:** Copy the ID from the agent URL in the [platform](https://octavus.ai) (e.g., `octavus.ai/agents/clxyz123`), or use the [CLI](/docs/server-sdk/cli) (`octavus sync ./agents/my-agent`) for local development workflows.
38
+ > **Getting the agent ID:** Copy the ID from the agent URL in the [platform](https://octavus.ai) (e.g., `octavus.ai/platform/agents/clxyz123`), or use the [CLI](/docs/server-sdk/cli) (`octavus sync ./agents/my-agent`) for local development workflows.
39
39
 
40
40
  ### Response
41
41