UNPKG

langflow-chatbot

Version:

Add a Langflow-powered chatbot to your website.

11 lines (10 loc) 384 B
import { ChatbotProfile, ServerProfile, Profile } from '../../types'; export declare function loadBaseConfig(): { langflowConnection: { endpoint_url: string; api_key?: string; }; serverDefaults: Partial<ServerProfile>; chatbotDefaults: Partial<ChatbotProfile>; }; export declare function loadInstanceConfig(instanceConfigPath: string): Array<Profile>;