- extraction-service: Fastify scaffold (port 4005) with extract/tasks modules - src/lib/: config, errors, cosmos, product-config, python-bridge - src/modules/extract/: types (Zod schemas), routes (POST /extract, batch, models) - src/modules/tasks/: types, repository (Cosmos CRUD), routes (CRUD endpoints) - Python sidecar: FastAPI app, LangExtract wrapper, models, task registry - @bytelyst/extraction package: types, client factory, index exports - Both pnpm build pass clean
5 lines
154 B
TypeScript
5 lines
154 B
TypeScript
/**
|
|
* Re-export from @bytelyst/cosmos — shared across all services.
|
|
*/
|
|
export { getContainer, getCosmosClient, getDatabase } from '@bytelyst/cosmos';
|