mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-07 03:33:22 +00:00
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
export * as ToolOutput from "./tool-output"
|
|
export {
|
|
ToolContent as Content,
|
|
ToolFileContent as FileContent,
|
|
ToolTextContent as TextContent,
|
|
toolFile as file,
|
|
toolText as text,
|
|
} from "@opencode-ai/llm"
|
|
import { Schema } from "effect"
|
|
|
|
export const Structured = Schema.Record(Schema.String, Schema.Any)
|