Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 3 additions & 3 deletions apps/kilocode-docs/docs/advanced-usage/managed-indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

---

Expand Down Expand Up @@ -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.

---

Expand Down
2 changes: 1 addition & 1 deletion src/shared/kilocode/cli-sessions/core/SessionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down