@oh-my-pi/pi-ai 10.5.0 → 10.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/types.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-ai",
3
- "version": "10.5.0",
3
+ "version": "10.6.1",
4
4
  "description": "Unified LLM API with automatic model discovery and provider configuration",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -63,7 +63,7 @@
63
63
  "@connectrpc/connect-node": "^2.1.1",
64
64
  "@google/genai": "^1.39.0",
65
65
  "@mistralai/mistralai": "^1.13.0",
66
- "@oh-my-pi/pi-utils": "10.5.0",
66
+ "@oh-my-pi/pi-utils": "10.6.1",
67
67
  "@sinclair/typebox": "^0.34.48",
68
68
  "@smithy/node-http-handler": "^4.4.9",
69
69
  "ajv": "^8.17.1",
package/src/types.ts CHANGED
@@ -349,7 +349,7 @@ export interface VercelGatewayRouting {
349
349
  }
350
350
 
351
351
  // Model interface for the unified model system
352
- export interface Model<TApi extends Api> {
352
+ export interface Model<TApi extends Api = any> {
353
353
  id: string;
354
354
  name: string;
355
355
  api: TApi;