Ollama

Latest version: v0.4.7

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 19

0.3.1

![Gemma 2](https://github.com/user-attachments/assets/1d36f462-b9f4-4e57-9387-4f75af435a99)

Google's Gemma 2 has a new 2B parameter small model!


ollama run gemma2:2b


New models
- [Gemma 2 2B](https://ollama.com/library/gemma2:2b): A new 2B parameter model by Google DeepMind

What's Changed
* Added support for `min_p` sampling option
* `ollama create` will now autodetect required stop parameters when importing certain models
* Ollama on Windows will now show better error messages if required files are missing
* Fixed issue where `/save` would cause parameters to be saved incorrectly
* OpenAI-compatible API will now return a `finish_reason` of `tool_calls` if a tool call occured.
* Performance and reliability improvements when downloading models using `ollama pull`
* Ollama's Linux install script will now return a better error on unsupported CUDA versions

New Contributors
* Robitx made their first contribution in https://github.com/ollama/ollama/pull/1825
* hellerve made their first contribution in https://github.com/ollama/ollama/pull/6041

**Full Changelog**: https://github.com/ollama/ollama/compare/v0.3.0...v0.3.1

0.3.0

![an image of ollama selecting the right tool for the job, holding up a hammer to nail wooden boards - please support ollama! Let open source win](https://github.com/user-attachments/assets/540b4123-59b7-4f79-8ac3-b5776590bd01)

Tool support

Ollama now supports tool calling with popular models such as [Llama 3.1](https://ollama.com/library/llama3.1). This enables a model to answer a given prompt using tool(s) it knows about, making it possible for models to perform more complex tasks or interact with the outside world.

Example tools include:

- Functions and APIs
- Web browsing
- Code interpreter
- much more!

https://github.com/user-attachments/assets/957ef0d6-e7b7-4168-8033-13b0fe5f7029

To use tools, provide the `tools` field when using Ollama's Chat API:

python
import ollama

response = ollama.chat(
model='llama3.1',
messages=[{'role': 'user', 'content': 'What is the weather in Toronto?'}],

provide a weather checking tool to the model
tools=[{
'type': 'function',
'function': {
'name': 'get_current_weather',
'description': 'Get the current weather for a city',
'parameters': {
'type': 'object',
'properties': {
'city': {
'type': 'string',
'description': 'The name of the city',
},
},
'required': ['city'],
},
},
},
],
)

print(response['message']['tool_calls'])


More information:
* [Python example](https://github.com/ollama/ollama-python/blob/main/examples/tools/main.py)
* [JavaScript example](https://github.com/ollama/ollama-js/blob/main/examples/tools/tools.ts)
* [API Reference](https://github.com/ollama/ollama/blob/main/docs/api.md#chat-request-with-tools)

New models

* [Llama 3.1](https://ollama.com/library/llama3.1): a new state-of-the-art model from Meta available in 8B, 70B and 405B parameter sizes with support for tool calling.
* [Mistral Large 2](https://ollama.com/library/mistral-large): Mistral's new 123B flagship model that is significantly more capable in code generation, tool calling, mathematics, and reasoning with 128k context window and support for dozens of languages.
* [Firefunction v2](https://ollama.com/library/firefunction-v2): An open weights function calling model based on Llama 3, competitive with GPT-4o function calling capabilities.
* [Llama-3-Groq-Tool-Use](https://ollama.com/library/llama3-groq-tool-use): A series of models from Groq that represent a significant advancement in open-source AI capabilities for tool use/function calling.

What's Changed
* Fixed duplicate error message when running `ollama create`

New Contributors
* lreed-mdsol made their first contribution in https://github.com/ollama/ollama/pull/5757
* ajhai made their first contribution in https://github.com/ollama/ollama/pull/5799

**Full Changelog**: https://github.com/ollama/ollama/compare/v0.2.8...v0.3.0

0.2.8

New models
- [Mistral Nemo](https://ollama.com/library/mistral-nemo): A state-of-the-art 12B model with 128k context length, built by Mistral AI in collaboration with NVIDIA.
- [NuExtract](https://ollama.com/library/nuextract): A 3.8B model fine-tuned on a private high-quality synthetic dataset for information extraction, based on Phi-3.

What's Changed
* Fixed issue where a final `assistant` message would not be considered for continuing a response
* Improved OpenAI-compatible chat completions endpoint image handling
* `ollama create` will now validate templates
* Fix error when old versions of ROCm 5 would be detected

**Full Changelog**: https://github.com/ollama/ollama/compare/v0.2.7...v0.2.8

0.2.7

What's Changed
* Fixed issue where last message when streaming would omit the `content` response field


**Full Changelog**: https://github.com/ollama/ollama/compare/v0.2.6...v0.2.7

0.2.6

New models
* [Mathstral](https://ollama.com/library/mathstral): MathΣtral is a 7B model designed for math reasoning and scientific discovery by Mistral AI.

What's Changed
* Fixed issue where uppercase roles such as `USER` would no longer work in the chat endpoints
* Fixed issue where empty system message would be included in the prompt

New Contributors
* SommerEngineering made their first contribution in https://github.com/ollama/ollama/pull/5721

**Full Changelog**: https://github.com/ollama/ollama/compare/v0.2.5...v0.2.6

0.2.5

What's changed

* Fixed issue where a model's `SYSTEM` message not be applied

**Full Changelog**: https://github.com/ollama/ollama/compare/v0.2.4...v0.2.5

Page 6 of 19

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.