@oh-my-pi/pi-ai 13.12.0 → 13.12.3

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-ai",
4
- "version": "13.12.0",
4
+ "version": "13.12.3",
5
5
  "description": "Unified LLM API with automatic model discovery and provider configuration",
6
6
  "homepage": "https://github.com/can1357/oh-my-pi",
7
7
  "author": "Can Boluk",
@@ -41,7 +41,7 @@
41
41
  "@aws-sdk/client-bedrock-runtime": "^3",
42
42
  "@bufbuild/protobuf": "^2.11",
43
43
  "@google/genai": "^1.43",
44
- "@oh-my-pi/pi-utils": "13.12.0",
44
+ "@oh-my-pi/pi-utils": "13.12.3",
45
45
  "@sinclair/typebox": "^0.34",
46
46
  "@smithy/node-http-handler": "^4.4",
47
47
  "ajv": "^8.18",
@@ -4,7 +4,7 @@ import { type GeneratedProvider, getBundledModels } from "./models";
4
4
  import type { Api, Model, Provider } from "./types";
5
5
  import { isRecord } from "./utils";
6
6
 
7
- const DEFAULT_CACHE_TTL_MS = 24 * 60 * 60 * 1000;
7
+ const DEFAULT_CACHE_TTL_MS = 2 * 60 * 60 * 1000;
8
8
  const NON_AUTHORITATIVE_RETRY_MS = 5 * 60 * 1000;
9
9
 
10
10
  /**