UNPKG

@unified-llm/core

Version:

Unified LLM interface (in-memory).

10 lines 634 B
import { LLMClient } from './llm-client.js'; import tools from './tools/index.js'; import { ResponseFormat, createResponseFormat, ResponseFormats } from './response-format.js'; import { callResponsesApiAgent } from "./providers/openai/responses-api-agent.js"; import { Thread } from "./thread.js"; export { LLMClient, tools, ResponseFormat, createResponseFormat, ResponseFormats, callResponsesApiAgent, Thread }; export type { LLMClientConfig } from './llm-client.js'; export type { Tool } from './types/unified-api.js'; export type { ResponseFormatConfig, JsonSchema } from './response-format.js'; //# sourceMappingURL=index.d.ts.map