Zed with mittwald
Zed is a high-performance code editor with built-in AI capabilities that supports OpenAI-compatible endpoints.
Prerequisites
- Zed editor installed
- mittwald API key from mStudio profile settings
Configuration
Via UI
- Open Agent Panel settings (
agent: open settings) - Under "LLM Providers", click Add Provider
- Choose "OpenAI API Compatible"
- Configure:
- Provider name:
mittwald - API URL:
https://llm.aihosting.mittwald.de/v1 - Model:
Ministral-3-14B-Instruct-2512
- Provider name:
Via settings.json
Alternatively, configure Zed via settings.json:
{
"language_models": {
"openai_compatible": {
"mittwald": {
"api_url": "https://llm.aihosting.mittwald.de/v1",
"available_models": [
{
"name": "Ministral-3-14B-Instruct-2512",
"display_name": "Ministral-3-14B-Instruct-2512",
"max_tokens": 262144
}
]
}
}
}
}
Note: Zed does not store API keys in settings.json. Set your API key as an environment variable:
export MITTWALD_API_KEY=<your-api-key>
Usage
Once configured, you can use mittwald's AI models in Zed's Agent Panel for:
- Code generation and completion
- Refactoring and optimization
- Documentation and explanations
- Code review and suggestions
Next Steps
- Explore other IDEs - Compare different integrations
- Learn about MCP - Infrastructure management
- Best practices - Optimize AI usage