@sandagent/sdk 0.8.4 → 0.8.5
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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -170,7 +170,7 @@ import { SandockSandbox } from "@sandagent/sandbox-sandock";
|
|
|
170
170
|
|
|
171
171
|
const sandbox = new SandockSandbox({
|
|
172
172
|
apiKey: process.env.SANDOCK_API_KEY, // Get yours at https://sandock.ai
|
|
173
|
-
image: "vikadata/sandagent:
|
|
173
|
+
image: "ghcr.io/vikadata/sandagent:latest", // Pre-built image (fast startup)
|
|
174
174
|
skipBootstrap: true,
|
|
175
175
|
workdir: "/workspace",
|
|
176
176
|
env: { ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY! },
|
|
@@ -186,7 +186,7 @@ const sandagent = createSandAgent({ sandbox, cwd: sandbox.getWorkdir() });
|
|
|
186
186
|
| Sandock Option | Description |
|
|
187
187
|
|----------------|-------------|
|
|
188
188
|
| `apiKey` | Your Sandock API key ([sandock.ai](https://sandock.ai)) |
|
|
189
|
-
| `image` | Docker image — use `vikadata/sandagent:
|
|
189
|
+
| `image` | Docker image — use `ghcr.io/vikadata/sandagent:latest` for pre-built, or `sandockai/sandock-code:latest` |
|
|
190
190
|
| `skipBootstrap` | `true` when using pre-built image (skips npm install inside sandbox) |
|
|
191
191
|
| `volumes` | Named volumes for persistent workspace & session storage |
|
|
192
192
|
| `keep` | `true` (default) keeps sandbox alive ~30 min after execution |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sandagent/sdk",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
4
4
|
"description": "SandAgent SDK - AI Provider and React hooks for building AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@ai-sdk/provider": "^3.0.8",
|
|
54
54
|
"@ai-sdk/react": "^3.0.105",
|
|
55
|
-
"@sandagent/manager": "0.8.
|
|
55
|
+
"@sandagent/manager": "0.8.5"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/node": "^20.10.0",
|