hugbot
Version:
Chatbot maker for HuggingFace Inference API and other AI API providers and backends.
15 lines • 521 B
TypeScript
import { HugBot } from "../HugBotEntity/HugBotEntity";
type BotsInStorage = "StarChat" | "Zephyr" | "Hermes" | "Mixtral" | "Mistral";
/**
* Bot storage container. Maps bot id's to their builder functions.
* The bot is instantiated during retieval with get() method.
*/
export declare const BotStorage: () => {
put: (id: string, fn: () => HugBot) => {
put: any;
get: (id: BotsInStorage) => HugBot;
};
get: (id: BotsInStorage) => HugBot;
};
export {};
//# sourceMappingURL=botStorage.d.ts.map