rename dev image with -dev suffix (#195)

This commit is contained in:
Olcan
2025-04-28 08:52:18 -07:00
committed by GitHub
parent a8f679ccb5
commit 491a9da80b
4 changed files with 34 additions and 27 deletions

View File

@@ -24,6 +24,7 @@ export interface ShellToolParams {
import { spawn } from 'child_process';
export class ShellTool extends BaseTool<ShellToolParams, ToolResult> {
// name should match TerminalTool.Name used in prompts.ts for now
static Name: string = 'execute_bash_command';
private readonly config: Config;
private whitelist: Set<string> = new Set();