Request for user input from the agent (enables ask_user tool)
| 443 | |
| 444 | |
| 445 | class UserInputRequest(TypedDict, total=False): |
| 446 | """Request for user input from the agent (enables ask_user tool)""" |
| 447 | |
| 448 | question: str |
| 449 | choices: list[str] |
| 450 | allowFreeform: bool |
| 451 | |
| 452 | |
| 453 | class UserInputResponse(TypedDict): |
no outgoing calls
no test coverage detected
searching dependent graphs…