mirror of
https://github.com/badlogic/pi-mono.git
synced 2026-05-24 13:54:43 +00:00
18 lines
659 B
TypeScript
18 lines
659 B
TypeScript
import { appendFileSync } from "node:fs";
|
|
import { join } from "node:path";
|
|
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
|
|
export default function (pi: ExtensionAPI) {
|
|
const logFile = join(process.cwd(), ".pi", "provider-payload.log");
|
|
|
|
pi.on("before_provider_request", (event) => {
|
|
appendFileSync(logFile, `${JSON.stringify(event.payload, null, 2)}\n\n`, "utf8");
|
|
|
|
// Optional: replace the payload instead of only logging it.
|
|
// return { ...event.payload, temperature: 0 };
|
|
});
|
|
|
|
pi.on("after_provider_response", (event) => {
|
|
appendFileSync(logFile, `[${event.status}] ${JSON.stringify(event.headers)}\n\n`, "utf8");
|
|
});
|
|
}
|