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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Lorebyte reads your staged changes, sends the diff to an LLM, and writes a [Conv

- **One-click commit messages** — click the Lorebyte icon in the Source Control title bar or run the command from the palette
- **Conventional Commits** — generates messages following the `<type>(<scope>): <description>` format
- **Multi-language** — commit messages can be generated in any language
- **Model selection** — browse and switch between available models on the fly
- **Chinese / English** — commit messages can be generated in Chinese or English
- **Model selection** — browse and switch between available models via API
- **Configurable provider** — ships with [OpenCode Zen](https://opencode.ai/docs/zen/) support, extensible via a provider registry

## Quick Start
Expand All @@ -26,17 +26,17 @@ The generated message appears in the commit input box, ready to commit.
| Command | Description |
|---------|-------------|
| `Lorebyte: Generate Commit Message` | Generate a commit message from staged changes |
| `Lorebyte: List Available Models` | Browse remote models and switch the active model |
| `Lorebyte: List Available Models` | Browse remote models and switch the active model (requires API key) |

## Settings

| Setting | Default | Description |
|---------|---------|-------------|
| `lorebyte.provider` | `opencode-zen` | LLM provider ID |
| `lorebyte.model` | `kimi-k2.5-free` | Model ID for generating commit messages |
| `lorebyte.model` | `minimax-m2.5-free` | Model ID for generating commit messages |
| `lorebyte.apiKey` | — | API key for the LLM provider |
| `lorebyte.apiBaseUrl` | `https://opencode.ai/zen/v1/chat/completions` | API endpoint URL |
| `lorebyte.language` | `English` | Language for generated commit messages |
| `lorebyte.language` | `English` | Language for generated commit messages (`English` / `Chinese`) |

## Development

Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@
"lorebyte.language": {
"type": "string",
"default": "English",
"enum": ["English", "Chinese"],
"enumDescriptions": [
"Generate commit messages in English",
"Generate commit messages in Chinese (中文)"
],
"description": "Language for generated commit messages"
}
}
Expand Down