UNPKG

langflow-chatbot

Version:

Add a Langflow-powered chatbot to your website.

5 lines (4 loc) 418 B
import http from 'http'; import { Profile } from '../types'; export declare function handleGetChatbotConfigRequest(profileId: string, res: http.ServerResponse, chatbotConfigurations: Map<string, Profile>, proxyApiBasePath: string): Promise<void>; export declare function handleListChatbotProfilesRequest(req: http.IncomingMessage, res: http.ServerResponse, chatbotConfigurations: Map<string, Profile>): Promise<void>;