@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.
- package/content/01-getting-started/02-quickstart.md +2 -2
- package/content/02-server-sdk/06-workers.md +2 -2
- package/content/05-api-reference/02-sessions.md +1 -1
- package/dist/{chunk-Z5E72EIS.js → chunk-2UFDUNPK.js} +13 -13
- package/dist/chunk-2UFDUNPK.js.map +1 -0
- package/dist/{chunk-PYLADDXH.js → chunk-JEOGYIRI.js} +13 -13
- package/dist/chunk-JEOGYIRI.js.map +1 -0
- package/dist/content.js +1 -1
- package/dist/docs.json +6 -6
- package/dist/index.js +1 -1
- package/dist/search-index.json +1 -1
- package/dist/search.js +1 -1
- package/dist/search.js.map +1 -1
- package/dist/sections.json +6 -6
- package/package.json +1 -1
- package/dist/chunk-PYLADDXH.js.map +0 -1
- package/dist/chunk-SNBEHHFU.js +0 -1507
- package/dist/chunk-SNBEHHFU.js.map +0 -1
- package/dist/chunk-Z5E72EIS.js.map +0 -1
|
@@ -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
|
|