@unified-llm/core
Version:
Unified LLM interface (in-memory).
11 lines • 721 B
TypeScript
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 { callGeminiAgent } from './providers/google/gemini-agent.js';
import { Thread } from "./thread.js";
export { LLMClient, tools, ResponseFormat, createResponseFormat, ResponseFormats, callResponsesApiAgent, callGeminiAgent, 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