(s: unknown)
| 336 | } |
| 337 | |
| 338 | function hydrateValue(s: unknown): unknown { |
| 339 | if (typeof s !== 'string') { |
| 340 | return s |
| 341 | } |
| 342 | return s |
| 343 | .replaceAll('[NUM]', '1') |
| 344 | .replaceAll('[DURATION]', '100') |
| 345 | .replaceAll('[CONFIG_HOME]', getClaudeConfigHomeDir()) |
| 346 | .replaceAll('[CWD]', getCwd()) |
| 347 | } |
| 348 | |
| 349 | export async function* withStreamingVCR( |
| 350 | messages: Message[], |