mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 12:03:49 +00:00
- Set up @mariozechner/ai package structure following monorepo patterns - Install OpenAI, Anthropic, and Google Gemini SDK dependencies - Document comprehensive API investigation for all three providers - Design minimal unified API with streaming-first architecture - Add models.dev integration for pricing and capabilities - Implement automatic caching strategy for all providers - Update project documentation with package creation guide
13 lines
399 B
JSON
13 lines
399 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@mariozechner/pi-tui": ["./packages/tui/src/index.ts"],
|
|
"@mariozechner/pi-ai": ["./packages/ai/src/index.ts"],
|
|
"@mariozechner/pi-agent": ["./packages/agent/src/index.ts"],
|
|
"@mariozechner/pi": ["./packages/pods/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["packages/*/src/**/*", "packages/*/test/**/*"]
|
|
}
|