Google Gemini Integration
Google Gemini is OmniIDE's primary cloud AI backend. It provides state-of-the-art reasoning, code generation, and error analysis capabilities for the Omni-Agent.
Setup
- Get a free API key from Google AI Studio
- Open OmniIDE Settings (
Ctrl+,) - Enter your API key in
omni.gemini.apiKey
Available Models
| Model | Best For | Speed |
|---|---|---|
| gemini-pro | General coding tasks | Fast |
| gemini-pro-vision | UI/UX and image analysis | Medium |
Configuration
{
"omni.gemini.apiKey": "your-key-here",
"omni.gemini.model": "gemini-pro",
"omni.gemini.maxTokens": 8192,
"omni.gemini.temperature": 0.1
}
Privacy: When using Gemini, your code context is sent to Google for processing. For fully private AI, use Ollama instead.
Related
- Ollama — Local AI alternative
- API Key Setup Guide