UNPKG

unstructured-client

Version:

<h3 align="center"> <img src="https://raw.githubusercontent.com/Unstructured-IO/unstructured/main/img/unstructured_logo.png" height="200" > </h3>

11 lines 584 B
import { ZodRawShape } from "zod"; import { PromptArgsRawShape, PromptDefinition } from "./prompts.js"; import { ResourceDefinition, ResourceTemplateDefinition } from "./resources.js"; import { ToolDefinition } from "./tools.js"; export type Register = { tool: <A extends ZodRawShape | undefined>(def: ToolDefinition<A>) => void; resource: (def: ResourceDefinition) => void; resourceTemplate: (def: ResourceTemplateDefinition) => void; prompt: <A extends PromptArgsRawShape | undefined>(prompt: PromptDefinition<A>) => void; }; //# sourceMappingURL=extensions.d.ts.map