(self, email: str)
| 222 | return AutoPager(fetch) |
| 223 | |
| 224 | async def get(self, email: str) -> AgentView: |
| 225 | return await self._c._read(lambda h: self._api.get_agent(email, _headers=h)) |
| 226 | |
| 227 | async def create(self, body: Body) -> AgentView: |
| 228 | req = _coerce(CreateAgentRequest, body) |