@effect/ai-openrouter 4.0.0-beta.65 → 4.0.0-beta.66
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.
|
@@ -26,10 +26,6 @@ declare const Config_base: Context.ServiceClass<Config, "@effect/ai-openrouter/O
|
|
|
26
26
|
readonly summary?: "auto" | "concise" | "detailed" | null;
|
|
27
27
|
};
|
|
28
28
|
readonly provider?: {
|
|
29
|
-
readonly sort?: "price" | "throughput" | "latency" | {
|
|
30
|
-
readonly by?: "price" | "throughput" | "latency" | null;
|
|
31
|
-
readonly partition?: "none" | "model" | null;
|
|
32
|
-
} | null;
|
|
33
29
|
readonly allow_fallbacks?: boolean | null;
|
|
34
30
|
readonly require_parameters?: boolean | null;
|
|
35
31
|
readonly data_collection?: "deny" | "allow" | null;
|
|
@@ -39,12 +35,16 @@ declare const Config_base: Context.ServiceClass<Config, "@effect/ai-openrouter/O
|
|
|
39
35
|
readonly only?: readonly string[] | null;
|
|
40
36
|
readonly ignore?: readonly string[] | null;
|
|
41
37
|
readonly quantizations?: readonly ("int4" | "int8" | "fp4" | "fp6" | "fp8" | "fp16" | "bf16" | "fp32" | "unknown")[] | null;
|
|
38
|
+
readonly sort?: "price" | "throughput" | "latency" | {
|
|
39
|
+
readonly by?: "price" | "throughput" | "latency" | null;
|
|
40
|
+
readonly partition?: "none" | "model" | null;
|
|
41
|
+
} | null;
|
|
42
42
|
readonly max_price?: {
|
|
43
|
-
readonly image?: unknown;
|
|
44
|
-
readonly request?: unknown;
|
|
45
|
-
readonly audio?: unknown;
|
|
46
43
|
readonly prompt?: unknown;
|
|
47
44
|
readonly completion?: unknown;
|
|
45
|
+
readonly image?: unknown;
|
|
46
|
+
readonly audio?: unknown;
|
|
47
|
+
readonly request?: unknown;
|
|
48
48
|
};
|
|
49
49
|
readonly preferred_min_throughput?: number | {
|
|
50
50
|
readonly p50?: number | null;
|
|
@@ -68,9 +68,9 @@ declare const Config_base: Context.ServiceClass<Config, "@effect/ai-openrouter/O
|
|
|
68
68
|
} | {
|
|
69
69
|
readonly id: "web";
|
|
70
70
|
readonly enabled?: boolean;
|
|
71
|
-
readonly engine?: "native" | "exa";
|
|
72
71
|
readonly max_results?: number;
|
|
73
72
|
readonly search_prompt?: string;
|
|
73
|
+
readonly engine?: "native" | "exa";
|
|
74
74
|
} | {
|
|
75
75
|
readonly id: "file-parser";
|
|
76
76
|
readonly enabled?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/ai-openrouter",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.66",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "An OpenRouter provider integration for Effect AI SDK",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"provenance": true
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"effect": "^4.0.0-beta.
|
|
46
|
+
"effect": "^4.0.0-beta.66"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"effect": "^4.0.0-beta.
|
|
49
|
+
"effect": "^4.0.0-beta.66"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"codegen": "effect-utils codegen",
|