Shaheer Sarfaraz 82b261c7bc
Refactor LLM service into modular adapters and policies (#83)
* llm migration

* orchestrator runer

* Decompose runPipeline steps

* dedupe

* refactor(settings): unify settings conversion metadata and round-trip tests

* refactor(llm): extract shared provider strategy factory

* refactor(settings-ui): add reusable numeric setting section

* test(orchestrator): stabilize usePipelineSources localStorage setup

* comments
2026-02-04 21:48:28 +00:00

15 lines
326 B
TypeScript

/**
* Compatibility facade for legacy imports.
* New implementation lives under ./llm/*
*/
export { LlmService } from "./llm/service";
export type {
JsonSchemaDefinition,
LlmProvider,
LlmRequestOptions,
LlmResponse,
LlmValidationResult,
} from "./llm/types";
export { parseJsonContent } from "./llm/utils/json";