( prompt: string, jsonInput: string, )
| 28 | * Also supports indexed arguments like $ARGUMENTS[0], $ARGUMENTS[1], or shorthand $0, $1, etc. |
| 29 | */ |
| 30 | export function addArgumentsToPrompt( |
| 31 | prompt: string, |
| 32 | jsonInput: string, |
| 33 | ): string { |
| 34 | return substituteArguments(prompt, jsonInput) |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Create a StructuredOutput tool configured for hook responses. |
no test coverage detected