/** * Tool execution configuration. Defaults to `{"mode": "sync"}`. Phase 1a only allows `sync`. */ export interface LlmToolExecution { /** Execution mode. Phase 1a only accepts `sync`. */ mode?: "sync"; /** Accepts any additional properties */ [key: string]: any; }