ollama_health
Check Ollama daemon connectivity and verify service reachability before using other tools in the Ollama-Omega server.
Instructions
Check Ollama daemon connectivity and list currently running models. Use this tool as the first call to verify the Ollama service is reachable before calling any other tool in this server. Do not use this to list all installed models — use ollama_list_models instead. Behavior: Read-only, idempotent, safe to retry. No authentication required. No rate limits. Makes a single HTTP GET to the Ollama daemon. On connection failure returns an error object without throwing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connected | No | True if the Ollama daemon responded to the health check. | |
| host | Yes | The Ollama host URL that was checked (e.g., 'http://localhost:11434'). | |
| running_models | No | Models currently loaded in GPU/CPU memory. Empty array if none are loaded. | |
| error | No | Error message if connection failed. Only present on failure. |