@cline/shared 0.0.66 → 0.0.67-nightly.1785554076
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/dist/agents/types.d.ts +45 -11
- package/dist/extensions/contribution-registry.d.ts +12 -4
- package/dist/hub.d.ts +1 -1
- package/dist/index.browser.d.ts +3 -0
- package/dist/index.browser.js +18 -18
- package/dist/index.d.ts +3 -0
- package/dist/index.js +63 -63
- package/dist/llms/gateway.d.ts +4 -2
- package/dist/llms/model-info.d.ts +21 -0
- package/dist/llms/reasoning-effort.d.ts +3 -1
- package/dist/llms/reasoning-options.d.ts +41 -0
- package/dist/mcp.d.ts +24 -0
- package/dist/remote-config/index.js +1 -1
- package/dist/remote-config/schema.d.ts +0 -4
- package/dist/rpc/runtime.d.ts +2 -1
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@ import { z } from "zod";
|
|
|
14
14
|
export declare const OpenAiCompatibleModelSchema: z.ZodObject<{
|
|
15
15
|
id: z.ZodString;
|
|
16
16
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
17
|
-
isR1FormatRequired: z.ZodOptional<z.ZodBoolean>;
|
|
18
17
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
19
18
|
contextWindow: z.ZodOptional<z.ZodNumber>;
|
|
20
19
|
inputPrice: z.ZodOptional<z.ZodNumber>;
|
|
@@ -25,7 +24,6 @@ export declare const OpenAiCompatibleSchema: z.ZodObject<{
|
|
|
25
24
|
models: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26
25
|
id: z.ZodString;
|
|
27
26
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
28
|
-
isR1FormatRequired: z.ZodOptional<z.ZodBoolean>;
|
|
29
27
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
30
28
|
contextWindow: z.ZodOptional<z.ZodNumber>;
|
|
31
29
|
inputPrice: z.ZodOptional<z.ZodNumber>;
|
|
@@ -111,7 +109,6 @@ declare const ProviderSettingsSchema: z.ZodObject<{
|
|
|
111
109
|
models: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
112
110
|
id: z.ZodString;
|
|
113
111
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
114
|
-
isR1FormatRequired: z.ZodOptional<z.ZodBoolean>;
|
|
115
112
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
116
113
|
contextWindow: z.ZodOptional<z.ZodNumber>;
|
|
117
114
|
inputPrice: z.ZodOptional<z.ZodNumber>;
|
|
@@ -255,7 +252,6 @@ export declare const RemoteConfigSchema: z.ZodObject<{
|
|
|
255
252
|
models: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
256
253
|
id: z.ZodString;
|
|
257
254
|
temperature: z.ZodOptional<z.ZodNumber>;
|
|
258
|
-
isR1FormatRequired: z.ZodOptional<z.ZodBoolean>;
|
|
259
255
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
260
256
|
contextWindow: z.ZodOptional<z.ZodNumber>;
|
|
261
257
|
inputPrice: z.ZodOptional<z.ZodNumber>;
|
package/dist/rpc/runtime.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
2
|
import type { HubToolExecutorName } from "../hub";
|
|
3
|
+
import type { ReasoningLevel } from "../llms/reasoning-options";
|
|
3
4
|
import type { RuntimeConfigExtensionKind, SessionExecutionConfig, SessionPromptConfig } from "../session/runtime-config";
|
|
4
5
|
export interface ChatRuntimeConfig extends SessionPromptConfig {
|
|
5
6
|
cwd?: string;
|
|
@@ -240,7 +241,7 @@ export interface SaveProviderSettingsActionRequest {
|
|
|
240
241
|
timeout?: number;
|
|
241
242
|
reasoning?: {
|
|
242
243
|
enabled?: boolean;
|
|
243
|
-
effort?:
|
|
244
|
+
effort?: ReasoningLevel;
|
|
244
245
|
budgetTokens?: number;
|
|
245
246
|
};
|
|
246
247
|
aws?: {
|