chore: drop dead imports across opencode/core/llm (#28720)

This commit is contained in:
Kit Langton 2026-05-21 17:03:12 -04:00 committed by GitHub
commit e92c4fb460
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 7 additions and 27 deletions

View file

@ -14,7 +14,6 @@ import {
ToolChoice,
ToolDefinition,
type ContentPart,
ToolCallPart,
ToolResultPart,
} from "./schema"
import { make as makeTool, type ToolSchema } from "./tool"

View file

@ -1,7 +1,6 @@
import { Cause, Context, Effect, Layer, Queue, Stream } from "effect"
import { Headers } from "effect/unstable/http"
import { Auth } from "../auth"
import { LLMError, TransportReason, type LLMRequest } from "../../schema"
import { LLMError, TransportReason } from "../../schema"
import * as HttpTransport from "./http"
import type { Transport } from "./index"