apix/lib/crawler.ts
Khoa.vo e69c6ba64d
Some checks are pending
CI / build (18.x) (push) Waiting to run
CI / build (20.x) (push) Waiting to run
chore: Remove Grok integration, simplify Settings UI
- 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
2026-01-07 19:21:51 +07:00

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 [];
}
}