What's Changed
* New `ollama show` command for viewing details about a model:
* See a system prompt for a model: `ollama show --system orca-mini`
* View a model's parameters: `ollama show --parameters codellama`
* View a model's default prompt template: `ollama show --template llama2`
* View a Modelfile for a model: `ollama show --modelfile llama2`
* Minor improvements to model loading and generation time
* Fixed an issue where large prompts would cause `codellama` and similar models to show an error
* Fixed compatibility issues with macOS 11 Big Sur
* Fixed an issue where characters would be escaped in prompts causing escaped characters like `&` in the output
* Fixed several issues with building from source on Windows and Linux
* Minor performance improvements to model loading and generation
* New sentiments example by technovangelist
* Fixed `num_keep` parameter not working properly
* Fixed issue where `Modelfile` parameters would not be honored at runtime
* Added missing options params to the embeddings docs by herrjemand
* Fixed issue where `ollama list` would error when there were no models to show
When building from source, Ollama will require running `go generate` to generate dependencies:
git clone https://github.com/jmorganca/ollama
cd ollama
go generate ./...
go build .
Note: `cmake` is required to build dependencies. On macOS it can be installed with `brew install cmake`, and on other platforms via the [installer](https://cmake.org/install/) or well-known package managers.
New Contributors
* callmephilip made their first contribution in https://github.com/jmorganca/ollama/pull/448
* herrjemand made their first contribution in https://github.com/jmorganca/ollama/pull/472
**Full Changelog**: https://github.com/jmorganca/ollama/compare/v0.0.17...v0.0.18