feat: adapt pullfrog for gitea + ollama

This commit is contained in:
2026-05-31 01:01:00 -05:00
parent 36ac64a5b6
commit 2aca1a3aa3
183 changed files with 1419 additions and 28292 deletions
+3 -7
View File
@@ -1,10 +1,6 @@
import { claude } from "./claude.ts";
// v2 harness — adapted to opencode-ai >=1.14.x SDK-v2 / Effect-ts CLI rewrite.
// The legacy v1 module (`./opencode.ts`) is kept around for reference + fast
// revert; the active runner is the v2 module below.
import { opencode } from "./opencode_v2.ts";
import { ollamaAgent } from "./ollama.ts";
import type { Agent } from "./shared.ts";
export type { Agent, AgentUsage } from "./shared.ts";
export type { Agent } from "./shared.ts";
export const agents = { claude, opencode } satisfies Record<string, Agent>;
export const agents = { ollama: ollamaAgent } satisfies Record<string, Agent>;