@neutrome/open-ai-router 0.6.7 → 0.6.8

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/.gitattributes ADDED
@@ -0,0 +1,16 @@
1
+ # Store and check out all text as LF. Prettier writes LF by default, so with
2
+ # this git and the formatter agree instead of rewriting each other's endings.
3
+ * text=auto eol=lf
4
+
5
+ # Byte-for-byte, never line-ending converted.
6
+ *.png binary
7
+ *.jpg binary
8
+ *.jpeg binary
9
+ *.gif binary
10
+ *.ico binary
11
+ *.webp binary
12
+ *.woff binary
13
+ *.woff2 binary
14
+ *.ttf binary
15
+ *.pdf binary
16
+ *.wasm binary
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neutrome/open-ai-router",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.ts"
@@ -23,7 +23,7 @@ import type {
23
23
  ProviderInvocationContext,
24
24
  } from "./execution-types.ts";
25
25
 
26
- const DEFAULT_MAX_DEPTH = 8;
26
+ const DEFAULT_MAX_DEPTH = 100;
27
27
  const unavailableCache: ExecutorContext["cache"] = {
28
28
  get: () => Promise.reject(cacheUnavailable()),
29
29
  put: () => Promise.reject(cacheUnavailable()),