Ollama
Notes
Release notes
v0.1.14
· 1y+
New Models
- StableLM Zephyr: A lightweight chat model allowing accurate, and responsive output without requiring high-end hardware.
- Magicoder: a family of 7B parameter models trained on 75K synthetic instruction data using OSS-Instruct, a novel approach to enlightening LLMs with open-source code snippets.
What's Changed
- New Chat API for sending a history of messages
curl http://localhost:11434/api/chat -d '{ "model": "mistral", "messages": [ { "role": "system", "content": "You are a helpful assistant that answers concisely." }, { "role": "user", "content": "why is the sky blue?" } ] }' - Linewrap now works when resizing the terminal with
ollama run - Fixed an issue where ctrl+z would not suspend
ollama runas expected - Fixed an issue where requests to
/api/generatewould not work when waiting for another request to finish - Fixed an issue where extra whitespace after a
FROMcommand would cause an error - Ollama will now warn you if there's a version mismatch when connecting remotely with
OLLAMA_HOST - New
/api/versionAPI for checking Ollama's version
New Contributors
- @ruecat made their first contribution in https://github.com/jmorganca/ollama/pull/1364
- @calderonsamuel made their first contribution in https://github.com/jmorganca/ollama/pull/1399
- @Xe made their first contribution in https://github.com/jmorganca/ollama/pull/1406
Full Changelog: https://github.com/jmorganca/ollama/compare/v0.1.13...v0.1.14