f266c386f3
* chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers Remove 33 dead files, ~270 unreferenced exports/types, 13 dead i18n namespaces and 4 unused dependencies; fold byte-identical helper copies into one canonical home each (lib/utils chunk/sleep/utcDateStamp, lib/dates/iso, lib/invariants/uuid, lib/xml/escape, lib/reports/sru/format, lib/pdf/number-text, lib/browser/panel-request, lib/api/v1/body + v1ValidationError rolled out to ~55 v1 routes, booking-template schemas). No behaviour change: v1 bodies and status codes, MCP tool schemas, DB writes and money math are untouched. Naive ore rounding was deliberately not swapped for roundOre; see DECISIONS.md 2026-09-02 for the full list of things left alone on purpose. tsc, lint, 19588 unit tests and check:guards green; antipattern baseline ratcheted (naive-ore-round 622 -> 620, hand-rolled-invariant 115 -> 113). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> * test(transactions): import RawTransaction from @/types after the ingest re-export removal CI's type ratchet (check:types, full tsconfig) caught the one test file that still imported the type through lib/transactions/ingest. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
import { readAiConfig, type ResolvedAiConfig } from './config'
|
|
import { createAnthropicFamilyService } from './services/anthropic-family'
|
|
import { createOpenAICompatibleService } from './services/openai-compatible'
|
|
import type { AiService } from './types'
|
|
|
|
export type {
|
|
AiChatTurn,
|
|
AiDocumentInput,
|
|
AiImageMediaType,
|
|
AiService,
|
|
AiToolDef,
|
|
AiTier,
|
|
ExtractionSkipReason,
|
|
} from './types'
|
|
export { getAiStatus, readAiConfig } from './config'
|
|
export { extractJsonObject } from './json'
|
|
|
|
// One service per resolved configuration. Keyed on the non-secret parts of
|
|
// the config plus credential presence, so a changed environment (tests, the
|
|
// smoke script) gets a fresh service while a long-lived process reuses one.
|
|
let cached: { key: string; service: AiService } | null = null
|
|
|
|
function cacheKey(cfg: ResolvedAiConfig): string {
|
|
return JSON.stringify({
|
|
provider: cfg.provider,
|
|
configured: cfg.configured,
|
|
baseUrl: cfg.baseUrl,
|
|
hasKey: !!cfg.apiKey,
|
|
models: cfg.models,
|
|
vision: cfg.vision,
|
|
strictJson: cfg.strictJson,
|
|
pdfMode: cfg.pdfMode,
|
|
pdfMaxPages: cfg.pdfMaxPages,
|
|
})
|
|
}
|
|
|
|
/**
|
|
* The AI service for this deployment. Never throws on construction: an
|
|
* unconfigured deployment still gets a service whose extractFromDocument
|
|
* answers `skipped: ai_unconfigured`, so upload paths degrade quietly.
|
|
*/
|
|
export function getAiService(): AiService {
|
|
const cfg = readAiConfig()
|
|
const key = cacheKey(cfg)
|
|
if (cached && cached.key === key) return cached.service
|
|
const service =
|
|
cfg.provider === 'openai-compatible'
|
|
? createOpenAICompatibleService(cfg)
|
|
: createAnthropicFamilyService(cfg)
|
|
cached = { key, service }
|
|
return service
|
|
}
|