@neutrome/open-ai-router 0.6.6 → 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 +16 -0
- package/package.json +3 -3
- package/src/router/execution-runtime.ts +1 -1
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.
|
|
3
|
+
"version": "0.6.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts"
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"hono": "^4.12.18",
|
|
12
12
|
"posthog-node": "^5.41.0",
|
|
13
13
|
"zod": "^4.2.1",
|
|
14
|
-
"@neutrome/lil-engine": "0.4.
|
|
15
|
-
"@neutrome/lilsdk": "0.4.
|
|
14
|
+
"@neutrome/lil-engine": "0.4.5",
|
|
15
|
+
"@neutrome/lilsdk": "0.4.5"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/node": "^25.9.3",
|
|
@@ -23,7 +23,7 @@ import type {
|
|
|
23
23
|
ProviderInvocationContext,
|
|
24
24
|
} from "./execution-types.ts";
|
|
25
25
|
|
|
26
|
-
const DEFAULT_MAX_DEPTH =
|
|
26
|
+
const DEFAULT_MAX_DEPTH = 100;
|
|
27
27
|
const unavailableCache: ExecutorContext["cache"] = {
|
|
28
28
|
get: () => Promise.reject(cacheUnavailable()),
|
|
29
29
|
put: () => Promise.reject(cacheUnavailable()),
|