Ollama

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

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 run as expected
  • Fixed an issue where requests to /api/generate would not work when waiting for another request to finish
  • Fixed an issue where extra whitespace after a FROM command would cause an error
  • Ollama will now warn you if there's a version mismatch when connecting remotely with OLLAMA_HOST
  • New /api/version API for checking Ollama's version

New Contributors

Full Changelog: https://github.com/jmorganca/ollama/compare/v0.1.13...v0.1.14