PiEngine represents the Pi AI coding agent (experimental). Pi is a provider-agnostic agentic coding assistant that communicates via stdin/stdout and emits a streaming JSONL log for structured event capture. When engine.model uses provider/model format (e.g. "copilot/claude-sonnet-4-20250514"), Pi b
| 27 | // |
| 28 | // Both requirements are validated at compile time by validatePiEngineRequirements. |
| 29 | type PiEngine struct { |
| 30 | BaseEngine |
| 31 | } |
| 32 | |
| 33 | // NewPiEngine creates and returns a new PiEngine instance. |
| 34 | func NewPiEngine() *PiEngine { |
nothing calls this directly
no outgoing calls
no test coverage detected