@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
20 lines (17 loc) • 419 B
text/typescript
import { browserless } from './browserless';
import { exa } from './exa';
import { firecrawl } from './firecrawl';
import { jina } from './jina';
import { naive } from './naive';
import { search1api } from './search1api';
import { tavily } from './tavily';
export const crawlImpls = {
browserless,
exa,
firecrawl,
jina,
naive,
search1api,
tavily,
};
export type CrawlImplType = keyof typeof crawlImpls;