(agent_name: str)
| 33 | |
| 34 | |
| 35 | def transfer_call_part(agent_name: str) -> Part: |
| 36 | return Part.from_function_call( |
| 37 | name='transfer_to_agent', args={'agent_name': agent_name} |
| 38 | ) |
| 39 | |
| 40 | |
| 41 | TRANSFER_RESPONSE_PART = Part.from_function_response( |
no outgoing calls
no test coverage detected