diff options
| author | Idris Gadi <[email protected]> | 2026-01-30 23:46:01 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-30 12:16:01 -0600 |
| commit | 7d0777a7ff8fd7b21153072535ef160631a37c29 (patch) | |
| tree | 6539f645cb6d2c4b20be1b7b8c4cc50f3d75ce7f | |
| parent | f48e2e56c95a7b96648176f1f783929dc4f33b37 (diff) | |
| download | opencode-7d0777a7ff8fd7b21153072535ef160631a37c29.tar.gz opencode-7d0777a7ff8fd7b21153072535ef160631a37c29.zip | |
chore(tui): remove unused experimental keys (#11195)
| -rw-r--r-- | packages/opencode/src/config/config.ts | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 2f1cba8a0..7969e3079 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -1078,29 +1078,6 @@ export namespace Config { .optional(), experimental: z .object({ - hook: z - .object({ - file_edited: z - .record( - z.string(), - z - .object({ - command: z.string().array(), - environment: z.record(z.string(), z.string()).optional(), - }) - .array(), - ) - .optional(), - session_completed: z - .object({ - command: z.string().array(), - environment: z.record(z.string(), z.string()).optional(), - }) - .array() - .optional(), - }) - .optional(), - chatMaxRetries: z.number().optional().describe("Number of retries for chat completions on failure"), disable_paste_summary: z.boolean().optional(), batch_tool: z.boolean().optional().describe("Enable the batch tool"), openTelemetry: z |
