Views
No views yet
| Parameter | Description |
|---|---|
temperature | Controls randomness (0.0 = deterministic, 1.0 = creative) |
top_p | Nucleus sampling threshold |
max_tokens | Maximum tokens to generate |
stop | Stop sequences |
stream | Enable streaming responses (SSE) |
| Endpoint | Method | Description |
|---|---|---|
/v1/models | GET | List available models |
/v1/chat/completions | POST | Chat completions (streaming + non-streaming) |
/v1/voice | WebSocket | Real-time voice interaction |
/health | GET | Health check (no auth required) |
1# Pull the model
2ollama pull geniuspro-coder-v1
3
4# Run interactively
5ollama run geniuspro-coder-v1
6
7# Serve via API
8ollama servehttp://localhost:11434 with the same OpenAI-compatible API format.