Multi-stage Chain-of-Thought reasoning service with: - FastAPI service using lilith-ml-service-base - Pipeline orchestration via lilith-pipeline-framework - LLM client using lilith-ollama-provider - TypeScript client package @lilith/cot-client - Service-addresses integration for port resolution (8110) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
16 lines
355 B
JSON
16 lines
355 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|