Explorar el Código

refactor(core): remove dead AISDK hook domain

Kit Langton hace 1 semana
padre
commit
a48e68fc30
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      packages/core/src/plugin/hooks.ts

+ 0 - 2
packages/core/src/plugin/hooks.ts

@@ -1,6 +1,5 @@
 export * as PluginHooks from "./hooks"
 
-import type { AISDKHooks } from "@opencode-ai/plugin/effect/aisdk"
 import type { SessionHooks } from "@opencode-ai/plugin/effect/session"
 import type { ShellHooks } from "@opencode-ai/plugin/effect/shell"
 import type { ToolHooks } from "@opencode-ai/plugin/effect/tool"
@@ -9,7 +8,6 @@ import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
 import { State } from "../state"
 
 export interface Domains {
-  readonly aisdk: AISDKHooks
   readonly session: SessionHooks
   readonly shell: ShellHooks
   readonly tool: ToolHooks