ollama runollama run llama2
Keywords: run, chat, interactive, model, download
ollama pullollama pull codellama:13b
Keywords: pull, download, model, update
ollama listollama list
Keywords: list, models, installed, local
ollama showollama show llama2
Keywords: show, info, details, parameters
ollama rmollama rm llama2:7b
Keywords: remove, delete, model, cleanup
ollama cpollama cp llama2 my-llama2
Keywords: copy, duplicate, model, variant
ollama createollama create mymodel -f ./Modelfile
Keywords: create, custom, modelfile, build
ollama pushollama push myusername/mymodel
Keywords: push, upload, share, registry
ollama serveollama serve
Keywords: serve, server, daemon, api, service
ollama psollama ps
Keywords: ps, running, status, memory, resources
ollama stopollama stop llama2
Keywords: stop, unload, memory, free
curl APIcurl -X POST http://localhost:11434/api/generate -d '{"model":"llama2","prompt":"Hello"}'
Keywords: api, curl, rest, generate, programmatic
ollama --versionollama --version
Keywords: version, info, troubleshoot
ollama helpollama help run
Keywords: help, usage, instructions, documentation
ollama run --verboseollama run --verbose llama2
Keywords: verbose, debug, detailed, tokens
ollama run --format jsonollama run llama2 --format json 'Explain JSON in one sentence'
Keywords: json, structured, format, programmatic
ollama run --systemollama run llama2 --system 'You are a helpful coding assistant'
Keywords: system, role, context, behavior
ollama run --templateollama run llama2 --template '{{.System}} {{.Prompt}}'
Keywords: template, prompt, custom, format
ollama run --keepaliveollama run --keepalive 5m llama2
Keywords: keepalive, memory, optimization, timeout
ollama run --nowordwrapollama run --nowordwrap codellama 'Generate a Python function'
Keywords: nowordwrap, code, structured, formatting
OLLAMA_HOSTOLLAMA_HOST=192.168.1.100:11434 ollama list
Keywords: host, remote, server, port, environment
OLLAMA_MODELSOLLAMA_MODELS=/custom/path ollama pull llama2
Keywords: models, directory, storage, path, custom
ollama run --multilineollama run --multiline llama2
Keywords: multiline, input, multiple, lines