Appearance
CherryStudio
CherryStudio is a desktop AI client that supports multiple providers. You can configure it to use 3xCoder for both Claude (Anthropic) and Gemini models.
| Official Website | https://cherry-ai.com |
Installation
Download CherryStudio from the official website for your platform.
Configuring Claude Models
To use Claude models through 3xCoder:
- Open CherryStudio
- Go to Settings → Model Provider
- Select Anthropic (or add a new Anthropic-compatible provider)
- Configure:
| Setting | Value |
|---|---|
| API URL | https://api.3xcoder.com/v1/messages |
| API Key | Your 3xCoder key (sk-...) |
- Click Verify to test the connection
- Save the configuration
Available Claude Models
After configuration, you can select Claude models:
claude-sonnet-4-20250514claude-haiku-3-5-20241022claude-opus-4-20250514
Configuring Gemini Models
To use Gemini models through 3xCoder:
- Go to Settings → Model Provider
- Select Google Gemini (or add a new provider)
- Configure:
| Setting | Value |
|---|---|
| API URL | https://api.3xcoder.com/v1beta/models |
| API Key | Your 3xCoder key (sk-...) |
- Click Verify to test
- Save
Available Gemini Models
gemini-2.5-progemini-2.5-flash
Configuring OpenAI Models
To use GPT and other OpenAI models:
- Go to Settings → Model Provider
- Select OpenAI (or add a new provider)
- Configure:
| Setting | Value |
|---|---|
| API URL | https://api.3xcoder.com/v1 |
| API Key | Your 3xCoder key (sk-...) |
- Verify and save
Tips
- Multiple Providers — You can configure all three providers (OpenAI, Anthropic, Gemini) simultaneously in CherryStudio, all using the same 3xCoder API key
- Model Switching — Switch between GPT, Claude, and Gemini within the same conversation
- Custom Prompts — Set up custom system prompts for different use cases
- Streaming — Streaming is supported for all models through 3xCoder
Troubleshooting
Verification fails
- Double-check the API URL — each provider type uses a different path
- Ensure your API key is correct and hasn't expired
- Try the connection manually:
bash
# Test Anthropic endpoint
curl https://api.3xcoder.com/v1/messages \
-H "x-api-key: sk-your-key" \
-H "Content-Type: application/json" \
-H "anthropic-version: 2023-06-01" \
-d '{"model": "claude-sonnet-4-20250514", "max_tokens": 100, "messages": [{"role": "user", "content": "Hi"}]}'Model not found
- Verify the model name is spelled correctly
- Check available models in your 3xCoder dashboard
- Run:
curl https://api.3xcoder.com/v1/models -H "Authorization: Bearer sk-your-key"
