SPB Git forge
28commits 1branches 0releases
7.7 MBsize
maindefault branch
10 days agolast push
Python 66.3% TypeScript 22.7% JavaScript 8.6% HTML 1.4% CSS 0.7%
926 B · 14 lines typescript
Raw Blame History
1/** Admin console modules (server-safe: imported by the /admin/[module] route and the client shell). */2export const ADMIN_MODULES: { id: string; label: string; hint: string }[] = [3  { id: 'overview', label: 'Overview', hint: 'Queue, workers, rates, storage, cost' },4  { id: 'connectors', label: 'Connectors', hint: 'Connector control center' },5  { id: 'sensors', label: 'Sensors', hint: 'Filters and actions' },6  { id: 'companies', label: 'Companies', hint: 'Onboarding and rediscovery' },7  { id: 'failures', label: 'Failures', hint: 'By class, last 24 h' },8  { id: 'queue', label: 'Queue', hint: 'Jobs by kind and status' },9  { id: 'llm', label: 'LLM jobs', hint: 'Enrichment pipeline' },10  { id: 'reviews', label: 'Reviews', hint: 'Human review queue' },11  { id: 'quality', label: 'Quality', hint: 'Coverage, freshness, calibration' },12  { id: 'costs', label: 'Costs', hint: 'Per dimension and unit economics' },13];14