UNPKG

@huggingface/ollama-utils

Version:

Various utilities for maintaining Ollama compatibility with models on Hugging Face hub

22 lines 486 B
export interface OllamaCustomMappedTemplate { ollamaTmpl: string; stop?: string; } export interface GGUFParsedInfo { chat_template: string; bos_token?: string; eos_token?: string; } export interface OllamaChatTemplateMapEntry { model: string; gguf: string; ollama: { template: string; tokens: string[]; params?: { stop?: string[]; [key: string]: any; }; }; } //# sourceMappingURL=types.d.ts.map