diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4772fee93b5..56ee24ebb64 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,4 +13,4 @@ There are lots of ways to contribute to the project - **Feature Requests:** Suggest new features or improvements - **Community Support:** Help other users in the community -The Kilocode Community is [here on Discord](https://kilo.ai/discord) +The Kilocode Community is [on Discord](https://kilo.ai/discord) diff --git a/apps/kilocode-docs/docs/advanced-usage/managed-indexing.md b/apps/kilocode-docs/docs/advanced-usage/managed-indexing.md index 1436df84ad9..26f654caa75 100644 --- a/apps/kilocode-docs/docs/advanced-usage/managed-indexing.md +++ b/apps/kilocode-docs/docs/advanced-usage/managed-indexing.md @@ -32,8 +32,8 @@ Before enabling Managed Indexing: ## Cost - **Currently free during beta** -- **Pricing coming soon** — A daily usage fee for index storage will be deducted from your AI credit balance. Pricing details are TBD. -- **Embedding model** — Uses `text-embedding-3-small`, which indexes approximately 65,000 pages of text per dollar. +- **Pricing coming soon** — A daily usage fee for index storage will be deducted from your AI credit balance. You will be charged per GB per day. +- **Embedding model** — Uses `mistralai/codestral-embed-2505` which currently charges $0.15/M input tokens. --- @@ -85,7 +85,7 @@ This retention policy keeps costs minimal by only maintaining indexes for active A minimal UI is available at [app.kilo.ai](https://app.kilo.ai) to: - View the size and status of your indexed projects -- Delete old branches +- Delete old branches & projects. --- diff --git a/src/shared/kilocode/cli-sessions/core/SessionManager.ts b/src/shared/kilocode/cli-sessions/core/SessionManager.ts index c48e378a21e..d313b2654d7 100644 --- a/src/shared/kilocode/cli-sessions/core/SessionManager.ts +++ b/src/shared/kilocode/cli-sessions/core/SessionManager.ts @@ -49,7 +49,7 @@ export interface SessionManagerDependencies extends TrpcClientDependencies { export class SessionManager { static readonly SYNC_INTERVAL = 3000 static readonly MAX_PATCH_SIZE_BYTES = 5 * 1024 * 1024 - static readonly VERSION = 1 + static readonly VERSION = 2 static readonly QUEUE_FLUSH_THRESHOLD = 5 private static instance = new SessionManager()