@kilocode/sdk 7.2.44 → 7.2.47

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.
@@ -1183,7 +1183,7 @@ export type IndexingConfig = {
1183
1183
  /**
1184
1184
  * Embedding provider to use for codebase indexing
1185
1185
  */
1186
- provider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "voyage";
1186
+ provider?: "kilo" | "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "voyage";
1187
1187
  /**
1188
1188
  * Embedding model ID (uses provider default if omitted)
1189
1189
  */
@@ -1196,6 +1196,14 @@ export type IndexingConfig = {
1196
1196
  * Vector store backend (default: qdrant)
1197
1197
  */
1198
1198
  vectorStore?: "lancedb" | "qdrant";
1199
+ /**
1200
+ * Kilo-hosted embedding provider options
1201
+ */
1202
+ kilo?: {
1203
+ apiKey?: string;
1204
+ baseUrl?: string;
1205
+ organizationId?: string;
1206
+ };
1199
1207
  /**
1200
1208
  * OpenAI embedding provider options
1201
1209
  */
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.2.44",
4
+ "version": "7.2.47",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "scripts": {