mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
New Bun/Hono service on port 3068 that bundles many web-research providers behind a unified interface for side-by-side comparison. All eval runs persist in research.* (mana_platform) so quality can be reviewed later. Providers (Phase 1+2): search: searxng, duckduckgo, brave, tavily, exa, serper extract: readability (via mana-search), jina-reader, firecrawl Endpoints: POST /v1/search, /v1/search/compare — single + fan-out POST /v1/extract, /v1/extract/compare — single + fan-out GET /v1/runs, /v1/runs/:id — history POST /v1/runs/:run/results/:id/rate — manual eval GET /v1/providers, /v1/providers/health — catalog + readiness Auto-routing: when `provider` is omitted, queries are classified via regex (fast path, 0ms) with optional mana-llm fallback, then routed to the first available provider for that query type (news → tavily, academic → exa, semantic → exa, etc.). Credits: server-key calls go through mana-credits reserve → commit/refund so failed provider calls don't charge the user. BYO-keys supported via research.provider_configs (UI arrives in Phase 4). Cache: Redis with graceful degradation (1h TTL for search, 24h for extract). Pay-per-use APIs only — no subscription-gated providers. Docs: docs/plans/mana-research-service.md + docs/reports/web-research-capabilities.md Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
/**
|
|
* Provider pricing in credits. 1 credit ≈ 1 cent EUR (matches mana-credits).
|
|
*
|
|
* Keep in sync with docs/plans/mana-research-service.md §2. Review quarterly.
|
|
* Prices as of 2026-04-17.
|
|
*/
|
|
|
|
import type { ProviderId } from '@mana/shared-research';
|
|
|
|
export const PROVIDER_PRICING: Record<
|
|
ProviderId,
|
|
{ search?: number; extract?: number; research?: number }
|
|
> = {
|
|
// Search providers
|
|
searxng: { search: 0 },
|
|
duckduckgo: { search: 0 },
|
|
brave: { search: 5 },
|
|
tavily: { search: 8 },
|
|
exa: { search: 6 },
|
|
serper: { search: 1 },
|
|
|
|
// Extract providers
|
|
readability: { extract: 0 },
|
|
'jina-reader': { extract: 1 },
|
|
firecrawl: { extract: 10 },
|
|
scrapingbee: { extract: 8 },
|
|
|
|
// Research agents
|
|
'perplexity-sonar': { research: 50 },
|
|
'claude-web-search': { research: 200 },
|
|
'openai-responses': { research: 200 },
|
|
'gemini-grounding': { research: 100 },
|
|
'openai-deep-research': { research: 1000 },
|
|
};
|
|
|
|
export function priceFor(
|
|
providerId: ProviderId,
|
|
operation: 'search' | 'extract' | 'research'
|
|
): number {
|
|
const entry = PROVIDER_PRICING[providerId];
|
|
return entry?.[operation] ?? 0;
|
|
}
|