UNPKG

@huggingface/ollama-utils

Version:

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

25 lines (22 loc) 415 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[]; // eslint-disable-next-line [key: string]: any; }; }; }