Output schema returned by the resolver agent.
| 29 | |
| 30 | from agents import Agent, Runner |
| 31 | from pydantic import BaseModel |
| 32 | |
| 33 | from quantmind.configs.base import BaseFlowCfg |
| 34 | |
| 35 | InputT = TypeVar("InputT", bound=BaseModel) |
| 36 | CfgT = TypeVar("CfgT", bound=BaseModel) |
| 37 | |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected