We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4216c1c commit 43c194dCopy full SHA for 43c194d
packages/opencode/src/acp/agent.ts
@@ -21,6 +21,7 @@ import type { ACPConfig } from "./types"
21
import { Provider } from "../provider/provider"
22
import { SessionPrompt } from "../session/prompt"
23
import { Identifier } from "../id/id"
24
+import { Installation } from "@/installation"
25
26
export class OpenCodeAgent implements Agent {
27
private log = Log.create({ service: "acp-agent" })
@@ -43,7 +44,7 @@ export class OpenCodeAgent implements Agent {
43
44
},
45
_meta: {
46
opencode: {
- version: await import("../installation").then((m) => m.Installation.VERSION),
47
+ version: Installation.VERSION,
48
49
50
}
0 commit comments