Collect user feedback and return the structured response.
(
self,
*,
node_id: str,
task: str,
inputs: Optional[str] = None,
metadata: Optional[Dict[str, Any]] = None,
)
| 24 | """Channel interface that performs the actual user interaction.""" |
| 25 | |
| 26 | def request( |
| 27 | self, |
| 28 | *, |
| 29 | node_id: str, |
| 30 | task: str, |
| 31 | inputs: Optional[str] = None, |
| 32 | metadata: Optional[Dict[str, Any]] = None, |
| 33 | ) -> PromptResult: |
| 34 | """Collect user feedback and return the structured response.""" |
| 35 | |
| 36 | |
| 37 | @dataclass |
no outgoing calls
no test coverage detected