@unified-llm/core
Version:
Unified LLM interface (in-memory).
9 lines (8 loc) • 487 B
TypeScript
import { LLMClient } from './llm-client';
import Thread from './thread';
import tools from './tools';
import { ResponseFormat, createResponseFormat, ResponseFormats } from './response-format';
export { LLMClient, Thread, tools, ResponseFormat, createResponseFormat, ResponseFormats, };
export type { LLMClientConfig, LLMClientRuntimeConfig } from './llm-client';
export type { Tool } from './types/unified-api';
export type { ResponseFormatConfig, JsonSchema } from './response-format';