feat: adapt pullfrog for gitea + ollama
This commit is contained in:
+3
-7
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user