MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / writeStepLLMDebugFile

Function writeStepLLMDebugFile

Assets/Script/Lib/Agent/CodingAgent.ts:573–579  ·  view source on GitHub ↗
(path: string, content: string)

Source from the content-addressed store, hash-verified

571}
572
573function writeStepLLMDebugFile(path: string, content: string): boolean {
574 if (!Content.save(path, content)) {
575 Log("Warn", `[CodingAgent] failed to save LLM debug file: ${path}`);
576 return false;
577 }
578 return true;
579}
580
581function createStepLLMDebugPair(shared: AgentShared, stepId: number, inContent: string): number {
582 if (!canWriteStepLLMDebug(shared, stepId)) return 0;

Callers 2

createStepLLMDebugPairFunction · 0.85

Calls 2

LogFunction · 0.90
saveMethod · 0.45

Tested by

no test coverage detected