Name of the custom agent to select for subsequent turns.
| 503 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 504 | @dataclass |
| 505 | class AgentSelectRequest: |
| 506 | """Name of the custom agent to select for subsequent turns.""" |
| 507 | |
| 508 | name: str |
| 509 | """Name of the custom agent to select""" |
| 510 | |
| 511 | @staticmethod |
| 512 | def from_dict(obj: Any) -> 'AgentSelectRequest': |
| 513 | assert isinstance(obj, dict) |
| 514 | name = from_str(obj.get("name")) |
| 515 | return AgentSelectRequest(name) |
| 516 | |
| 517 | def to_dict(self) -> dict: |
| 518 | result: dict = {} |
| 519 | result["name"] = from_str(self.name) |
| 520 | return result |
| 521 | |
| 522 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 523 | @dataclass |
no outgoing calls
searching dependent graphs…