Ollama

ollama/ollama last check 191 releases recent
Notes
Release notes
v0.1.30 · 1y+
view on github

<img alt="Ollama now supports Cohere's Command R model" src="https://github.com/ollama/ollama/assets/3325447/ba99059d-2397-4fb9-84b7-d45c71518b4e" width="640" />

New models

  • Command R: a Large Language Model optimized for conversational interaction and long context tasks.
  • mxbai-embed-large: A new state-of-the-art large embedding model

What's Changed

  • Fixed various issues with ollama run on Windows
    • History now will work when pressing up and down arrow keys
    • Right and left arrow keys will now move the cursor appropriately
    • Pasting multi-line strings will now work on Windows
  • Fixed issue where mounting or sharing files between Linux and Windows (e.g. via WSL or Docker) would cause errors due to having : in the filename.
  • Improved support for AMD MI300 and MI300X Accelerators
  • Improved cleanup of temporary files resulting in better space utilization

Important change

For filesystem compatibility, Ollama has changed model data filenames to use - instead of :. This change will be applied automatically. If downgrading to 0.1.29 or lower from 0.1.30 (on Linux or macOS only) run:

find ~/.ollama/models/blobs -type f -exec bash -c &#39;mv &quot;$0&quot; &quot;${0//-/:}&quot;&#39; {} \;

New Contributors

Full Changelog: https://github.com/ollama/ollama/compare/v0.1.29...v0.1.30