RUNLOCALAIv38
->Will it run?Best GPUCompareTroubleshootStartLearnPulseModelsHardwareToolsBench
Run check
RUNLOCALAI

Independently operated catalog for local-AI hardware and software. Hand-written verdicts. Source-cited claims. Reproducible commands when we have them.

OP·Fredoline Eruo
DIR
  • Models
  • Hardware
  • Tools
  • Benchmarks
TOOLS
  • Will it run?
  • Compare hardware
  • Cost vs cloud
  • Choose my GPU
  • Prompting kits
  • Quick answers
REF
  • All buyer guides
  • Learn local AI
  • Methodology
  • Glossary
  • Errors KB
  • Trust
EDITOR
  • About
  • Author
  • How we make money
  • Editorial policy
  • Contact
LEGAL
  • Privacy
  • Terms
  • Sitemap
MAIL · MONTHLY DIGEST
Get monthly local AI changes
Monthly recap. No spam.
DISCLOSURE

Some links on this site are affiliate links (Amazon Associates and other first-class retailers). When you buy through them, we earn a small commission at no extra cost to you. Affiliate links do not influence our verdicts — there are cards we rate highly that we don't have affiliate relationships with, and cards that sell well that we refuse to recommend. Read more →

© 2026 runlocalai.coIndependently operated
RUNLOCALAI · v38
  1. >
  2. Home
  3. /Learn
  4. /How-to
  5. /How to manage models in Open WebUI
HOW-TO · SET

How to manage models in Open WebUI

beginner·10 min·By Fredoline Eruo
Target environment
Ubuntu 24.04 · Ollama 0.4.xWindows 11 · Ollama 0.4.xmacOS 15 · Ollama 0.4.x
PREREQUISITES

Open WebUI connected to Ollama backend

What this does

Installs, switches, deletes, and configures AI models inside the Open WebUI interface without requiring command-line interaction with Ollama. After this guide all model operations are accessible from the WebUI settings panel.

Steps

  1. Open the models settings panel.

    • Click the user avatar in the top-right corner
    • Select Settings
    • Choose Models from the sidebar Expected result: Models page lists all models known to Ollama.
  2. Pull a new model directly from Ollama's registry.

    • In the Models panel, locate the Pull a Model input field
    • Enter a model reference such as llama3:8b-instruct
    • Click Pull Model Expected result: Progress indicator spins until the model downloads.
  3. Set a default model for new chat sessions.

    • In Settings > General, find the Default Model dropdown
    • Select the preferred model from the list
    • Click Save Expected result: Toast notification confirms the setting was saved.
  4. Delete an unneeded model to reclaim disk space.

    • In Settings > Models, locate the model row to remove
    • Click the trash icon next to the model name
    • Confirm the deletion prompt Expected result: The model row disappears from the list.

Verification

curl -s http://localhost:8080/api/v1/models | python3 -m json.tool
# Expected: JSON array containing model names accessible to Open WebUI

Common failures

  • Model appears in Ollama but not in Open WebUI — The WebUI container may not have connectivity to Ollama. Review OLLAMA_BASE_URL in the compose file.
  • Pull Model button does not respond — Ollama may not be running. Restart the Ollama container.
  • Deleted model reappears after refresh — Run docker exec ollama ollama rm <model-name> in addition to the UI deletion.
  • Model shows "offline" status — Restart Ollama with docker compose restart ollama.
  • Pull fails with "model not found" — The model reference string is incorrect. Verify with docker exec ollama ollama show <model-ref>.

Related guides

  • How to configure Open WebUI with Ollama backend
  • How to set up Open WebUI admin account
  • Course Ollama Deep Dive
RELATED GUIDES
SET
How to configure Open WebUI with Ollama backend
SET
How to set up Open WebUI admin account
← All how-to guidesCourses →