@kilocode/sdk 7.3.9 → 7.3.11

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.
@@ -1778,6 +1778,7 @@ export declare class Kilo extends HeyApiClient {
1778
1778
  workspace?: string;
1779
1779
  prefix?: string;
1780
1780
  suffix?: string;
1781
+ provider?: string;
1781
1782
  model?: string;
1782
1783
  maxTokens?: number;
1783
1784
  temperature?: number;
@@ -3618,6 +3618,7 @@ export class Kilo extends HeyApiClient {
3618
3618
  { in: "query", key: "workspace" },
3619
3619
  { in: "body", key: "prefix" },
3620
3620
  { in: "body", key: "suffix" },
3621
+ { in: "body", key: "provider" },
3621
3622
  { in: "body", key: "model" },
3622
3623
  { in: "body", key: "maxTokens" },
3623
3624
  { in: "body", key: "temperature" },
@@ -954,6 +954,8 @@ export type Config = {
954
954
  terminal_command_display?: "expanded" | "collapsed";
955
955
  model?: string;
956
956
  small_model?: string;
957
+ subagent_model?: string;
958
+ subagent_variant?: string;
957
959
  default_agent?: string;
958
960
  username?: string;
959
961
  mode?: {
@@ -1046,7 +1048,6 @@ export type Config = {
1046
1048
  codebase_search?: boolean;
1047
1049
  semantic_indexing?: boolean;
1048
1050
  agent_manager_tool?: boolean;
1049
- speech_to_text?: boolean;
1050
1051
  speech_to_text_model?: string;
1051
1052
  openTelemetry?: boolean;
1052
1053
  primary_tools?: Array<string>;
@@ -6508,6 +6509,7 @@ export type KiloFimData = {
6508
6509
  body?: {
6509
6510
  prefix: string;
6510
6511
  suffix: string;
6512
+ provider?: string;
6511
6513
  model?: string;
6512
6514
  maxTokens?: number;
6513
6515
  temperature?: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@kilocode/sdk",
4
- "version": "7.3.9",
4
+ "version": "7.3.11",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {