@cline/shared 0.0.66 → 0.0.67-nightly.1785467775

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.
@@ -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>;
@@ -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?: "none" | "low" | "medium" | "high" | "xhigh";
244
+ effort?: ReasoningLevel;
244
245
  budgetTokens?: number;
245
246
  };
246
247
  aws?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cline/shared",
3
- "version": "0.0.66",
3
+ "version": "0.0.67-nightly.1785467775",
4
4
  "description": "Shared utilities, types, and schemas for Cline packages",
5
5
  "repository": {
6
6
  "type": "git",