(model: string | undefined, modelReasoningEffort: string | null)
| 94 | } |
| 95 | |
| 96 | function createModeWithEffort(model: string | undefined, modelReasoningEffort: string | null): OpencodeMode { |
| 97 | return { |
| 98 | permissionMode: 'default' as PermissionMode, |
| 99 | model, |
| 100 | modelReasoningEffort |
| 101 | }; |
| 102 | } |
| 103 | |
| 104 | function createResetMode(): OpencodeMode { |
| 105 | return { |
no outgoing calls
no test coverage detected