- Removed all Grok-related code, API routes, and services - Removed crawl4ai service and meta-crawl client - Simplified Settings to always show cookie inputs for Meta AI - Hid advanced wrapper settings behind collapsible section - Provider selection now only shows Whisk and Meta AI - Fixed unused imports and type definitions
22 lines
525 B
TypeScript
22 lines
525 B
TypeScript
import { Prompt } from '@/lib/types';
|
|
|
|
export class JimmyLvCrawler {
|
|
async crawl(): Promise<Prompt[]> {
|
|
console.log("[JimmyLvCrawler] Crawling not implemented");
|
|
return [];
|
|
}
|
|
}
|
|
|
|
export class YouMindCrawler {
|
|
async crawl(): Promise<Prompt[]> {
|
|
console.log("[YouMindCrawler] Crawling not implemented");
|
|
return [];
|
|
}
|
|
}
|
|
|
|
export class ZeroLuCrawler {
|
|
async crawl(): Promise<Prompt[]> {
|
|
console.log("[ZeroLuCrawler] Crawling not implemented");
|
|
return [];
|
|
}
|
|
}
|