Ask the local model
local_askSend a prompt to a local Ollama model for immediate private answers. Use it for summarising text, drafting boilerplate, or extracting fields without sending data off-machine.
Instructions
Send a prompt to a local model via Ollama and get the answer back immediately. Runs on this machine, so nothing leaves it and there is no API cost. Use it for work where checking the answer is cheaper than producing it: summarising long output, drafting boilerplate or commit messages, extracting fields from text. It is a small model on CPU (~16 tok/s for a 7B), so keep outputs short — maxTokens is the main latency lever. It has no file access and cannot run anything. For work needing judgement, repo context, or edits on disk, do it yourself or use codex_start.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model tag. Defaults to qwen2.5-coder:7b. | |
| prompt | Yes | The full question or instruction. No conversation context is carried over. | |
| system | No | Optional system prompt to set role or output format. | |
| maxTokens | No | Cap on generated tokens. Roughly 16 tokens per second, so 160 is ~10s. | |
| temperature | No | Defaults to 0 for repeatable output. |