init pi folder

This commit is contained in:
Matteo Rosati
2026-05-07 22:04:21 +02:00
commit 0f95d08f86
35 changed files with 10860 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Message } from "@earendil-works/pi-ai";
export interface AgentRunResult {
exitCode: number;
messages: Message[];
stderr: string;
}
export interface AnaVerdict {
approved: boolean;
feedback: string;
}