MCPcopy Index your code
hub / github.com/github/copilot-sdk / AgentSelectRequest

Class AgentSelectRequest

python/copilot/generated/rpc.py:505–520  ·  view source on GitHub ↗

Name of the custom agent to select for subsequent turns.

Source from the content-addressed store, hash-verified

503# Experimental: this type is part of an experimental API and may change or be removed.
504@dataclass
505class 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

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…