This tutorial guides you through downloading your first language model and sending your first prompt.
Verify these prerequisites before you begin:
- Local LLM Server Manager is running and shows a green health indicator.
- The Ollama engine is installed and active on port
11434. - Your system has at least 8 GB of available system memory or GPU VRAM.
Open the model search interface:
- Open the application window or navigate to
http://localhost:5246in your web browser. - Click the Find & Download Models tab on the navigation bar.
Choose one of two methods to download a language model.
- Click the Ollama Library sub-tab.
- Choose one of the recommended starter models:
llama3.2:latest(2.0 GB): Lightweight model for general conversation.qwen2.5-coder:7b(4.7 GB): High-performance model for coding tasks.
- Click the Pull button on your chosen model card.
- Observe the progress bar as the system streams the model layers to disk.
Tip
The qwen2.5-coder:7b model delivers high code generation accuracy while using under 6 GB of VRAM.
- Click the Hugging Face Hub (GGUF) sub-tab.
- Type a repository name in the search box (for example:
Qwen/Qwen2.5-Coder-7B-Instruct-GGUF). - Press
Enterto search the Hugging Face Hub. - Select your preferred quantization file from the repository file list (for example:
qwen2.5-coder-7b-instruct-q4_k_m.gguf). - Click Pull Selected.
- Wait for the download to finish.
Note
Q4_K_M quantization provides an optimal balance between memory usage and generation quality.
Inspect your installed model and calculate memory requirements:
- Click the My Models tab on the top navigation bar.
- Locate your downloaded model in the model collection.
- Review the model badges (for example:
Coding,Chat,4.7 GB). - Drag the Interactive KV Cache Calculator slider to your target token length (for example:
8192tokens). - Review the estimated total VRAM calculation to ensure your GPU has sufficient capacity.
Test your newly downloaded model with an interactive prompt or automated test flight.
Verify that your installed model executes properly and clears GPU memory:
- Click the Studio tab on the navigation bar.
- Locate the Test Flight panel in the studio header.
- Select Text from the Modality dropdown.
- Select or type a starter prompt.
- Click 🚀 Launch Test Flight.
- The test runner sends a verified prompt to Ollama, confirms VRAM allocation, and returns the response in seconds.
Tip
Read the complete Real Engine Test Flight Guide to test Image, Video, and Audio engines.
Send a prompt from your terminal using the unified OpenAI-compatible endpoint on port 5246:
curl http://localhost:5246/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "qwen2.5-coder:7b",
"messages": [
{
"role": "user",
"content": "Explain binary search in three sentences."
}
],
"stream": false
}'The server routes the request to Ollama on port 11434 and returns the generated text.
You can connect popular web chat frontends to Local LLM Server Manager:
- Open WebUI: Set the Ollama URL to
http://localhost:5246orhttp://localhost:11434. - LibreChat: Add an OpenAI-compatible custom endpoint pointing to
http://localhost:5246/v1.
Note
The built-in AI Assistant tab connects to an external gateway (such as LiteLLM or Vertex AI Gemini Flash). The assistant intentionally excludes local models from its selector to keep 100% of your local GPU memory available for heavy diffusion and creative tasks. See the AI Chat Assistant Guide to configure external credentials.
Release GPU memory when you complete your tasks:
- Look at the top status bar in the application.
- Click Unload All VRAM.
The VRAM Orchestrator sends a release signal to Ollama. The GPU memory allocation bar drops back to zero.
- Consult the Troubleshooting Guide if you encounter errors.
- Visit the Engines Overview to configure Stable Diffusion Forge and ComfyUI.
- Visit the Multimodal Studio Guide to generate 3D meshes, videos, and speech.