( model: string | undefined, )
| 57 | |
| 58 | /** model alias -> the actual model id of the current provider. v1 passes it through directly (keeps a mapping extension point). Exported for unit test coverage. */ |
| 59 | export function mapWorkflowModel( |
| 60 | model: string | undefined, |
| 61 | ): string | undefined { |
| 62 | return model |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Extract the JSON object produced under schema mode from the agent's final message; returns null on failure. Exported for unit test coverage. |
no outgoing calls
no test coverage detected