Skip to content

Commit 9ee3264

Browse files
committed
feat: update README and add config.toml for new model providers
- Updated README to include recent features: multiple windows support and new AI providers (OpenRouter, Google). - Added config.toml file to define settings for new model providers, including OpenRouter and Google (Gemini).
1 parent 12cbe0d commit 9ee3264

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ fork chat, file-tree integration, notepad, git diff, build-in pdf csv/xlsx viewe
3737

3838
## News
3939

40-
- [2025-09-24] You can control Codex from Phone via browser, check [discussion comment](https://github.com/milisp/codexia/discussions/22#discussioncomment-14500403)
40+
- [2025-09-26] With multiple windows support, open multiple projects at the same time. Show token usage beside Reasoning Effort.
41+
- [2025-09-24] Remote control via browser, check [discussion comment](https://github.com/milisp/codexia/discussions/22#discussioncomment-14500403)
4142
- [2025-09-23] Share project to community and find a co-founder at explore page.
4243
- [2025-09-11] support codex built-in web search + file and filetree change detect and refresh
4344
- [2025-09-05] fork chat + edit chat
@@ -48,6 +49,7 @@ fork chat, file-tree integration, notepad, git diff, build-in pdf csv/xlsx viewe
4849
- Share project to community and find a co-founder at explore page - every user can share two projects.
4950
- 🔄 **Multi-Session Support**
5051
- 💬 **Real-Time Streaming**
52+
- multiple windows support, open multiple projects at the same time
5153
- remote control from browser
5254

5355
### Build-in Mutil file format support
@@ -56,7 +58,7 @@ fork chat, file-tree integration, notepad, git diff, build-in pdf csv/xlsx viewe
5658
- CSV/XLSX preview & selection
5759

5860
### ⚙️ **Flexible Configuration**
59-
- Multiple AI providers (OpenAI, Ollama, Custom)
61+
- Multiple AI providers (OpenAI, Ollama, Gemini, openrouter, xAI, Custom) - see [config.toml](docs/config.toml)
6062
- Per-session model configs
6163
- Adjustable sandbox policies
6264
- Custom approval workflows

docs/config.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[model_providers.openrouter]
2+
base_url = "https://openrouter.ai/api/v1"
3+
env_key = "OPENROUTER_API_KEY"
4+
name = "OpenRouter"
5+
6+
[model_providers.google]
7+
base_url = "https://generativelanguage.googleapis.com/v1beta/openai"
8+
env_key = "GEMINI_API_KEY"
9+
name = "Google"
10+
11+
[profiles.google]
12+
model = "gemini-2.5-flash"
13+
model_provider = "google"

0 commit comments

Comments
 (0)