Return True if *provider* uses caw (CLI subscription mode).
(provider: str)
| 28 | |
| 29 | @dataclass |
| 30 | class AgentReply: |
| 31 | """Result of one agentic run whose final message matters (the updater).""" |
| 32 | |
| 33 | text: str |
| 34 | usage: dict[str, Any] | None = None |
| 35 | seconds: float = 0.0 |
no outgoing calls
no test coverage detected