( projectId: string, projectPath: string, instruction: string, model: string = CODEX_DEFAULT_MODEL, _sessionId?: string, requestId?: string, )
| 1027 | } |
| 1028 | |
| 1029 | export async function applyChanges( |
| 1030 | projectId: string, |
| 1031 | projectPath: string, |
| 1032 | instruction: string, |
| 1033 | model: string = CODEX_DEFAULT_MODEL, |
| 1034 | _sessionId?: string, |
| 1035 | requestId?: string, |
| 1036 | ): Promise<void> { |
| 1037 | await executeCodex(projectId, projectPath, instruction, model ?? getDefaultModelForCli('codex'), requestId, false); |
| 1038 | } |
nothing calls this directly
no test coverage detected