feat(sandbox): allow image tool

This commit is contained in:
Peter Steinberger
2026-01-12 17:56:48 +00:00
parent 44e1f271c8
commit d24de1ec3b
6 changed files with 68 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ export function createClawdbotTools(options?: {
agentProvider?: GatewayMessageProvider;
agentAccountId?: string;
agentDir?: string;
sandboxRoot?: string;
workspaceDir?: string;
sandboxed?: boolean;
config?: ClawdbotConfig;
@@ -46,6 +47,7 @@ export function createClawdbotTools(options?: {
const imageTool = createImageTool({
config: options?.config,
agentDir: options?.agentDir,
sandboxRoot: options?.sandboxRoot,
});
const memorySearchTool = createMemorySearchTool({
config: options?.config,