(config: AgentConfig)
| 15 | |
| 16 | export class CodingAgent extends BaseAgent { |
| 17 | constructor(config: AgentConfig) { |
| 18 | super(config); |
| 19 | } |
| 20 | |
| 21 | async process(message: string, onFirstText?: () => void): Promise<string> { |
| 22 | const session = sessionManager.current(); |
nothing calls this directly
no outgoing calls
no test coverage detected