Skip to main content

Functions to parse Ollama options from string and get info on Ollama options.

Project description

pylint workflow pytest workflow

dm-ollamalib

Python package: helper functions to parse Ollama options from a string. Also show available options.

Nothing stellar, but these functionalities are somehow missing from the Ollama Python package.

Installation

If you haven't done so already, please install uv as this Python package and project manager basically makes all headaches of Python package management go away in an instant.

Simply do uv add dm-ollamalib and you are good to go.

In case you want to work with the GitHub repository (e.g., because testing out a branch or similar), do uv add git+https://github.com/DrMicrobit/dm-ollamalib.

Usage

Three function are provided:

  1. two helper functions that return as string a list of Ollama options, their type, and if available a short description
  2. a parsing function that parses a string and returns a dictionary compatible for use with Ollama

Functions to describe Ollama options

Both functions return a string.

[!NOTE] For name and type of the options, dm-ollamalib uses information directly from the Ollama Python library, which must be installed, e.g. via uv add ollama. That is, the strings returned are dynamically generated and adapted to the version of the Ollama Python library you have installed.

  1. help_overview(): returns a string showing name and type of supported Ollama options. String will look like this:
                numa : bool
             num_ctx : int
           num_batch : int
...
  1. help_long:(): returns a string showing name, type and description of supported Ollama options. The string will look like this:
numa : bool
This parameter seems to be new, or not described in docs as of January 2025.
dm_ollamalib does not know it, sorry.

num_ctx : int
Sets the size of the context window used to generate the next token.
(Default: 2048)
...

[!IMPORTANT] As no description texts for options are present in the Ollama Python library, they were copied into dm-ollamalib by hand from descriptions either from the Ollama docs for model files on GitHub or the Ollama Python library package on PyPi. Note that some options have no description online at all, dm-ollamalib will tell you that.

Function to parse strings representing Ollama options

to_ollama_options() transforms a string with semicolon separated Ollama options to into an Ollama options object. It has a more rigorous type checking than Ollama, e.g., if one passes a float for a parameter expecting an int, this will be caught.

Arguments:

  • params : str
    A string representing options for Ollama, separated by semicolon. E.g. "num_ctx=8092;temperature=0.8"
  • oopt: ollama.Options | None An optional Ollama option object into which the new options from "params" would be parsed into.

Exceptions raised:

  • ValueError for
    • unrecognised Ollama options
    • conversion errors of a string to required type (int, float, bool), e.g. "num_ctx=NotAnInt"
    • incomplete options (e.g. "num_ctx=" or "=8092")
    • unknown Ollama options
  • RuntimeError
    • if Ollama Python library has unexpected parameter types not handled by this function (should not happen, except if Ollama devs implemented something new)

Usage examples

from dm_ollamalib.parse_options import help_long, help_overview, to_ollama_options

print(help_overview())
print(help_long())

print(to_ollama_options("top_p=0.9;temperature=0.8"))

The first two lines will print the generated help texts for the options present in the Ollama Python package. The two subsequent lines show how to parse options from one or several strings coming from, e.g. command line.

The dictionary returned by to_ollama_options() can be used directly in calls to Ollama. E.g.

import ollama
from dm_ollamalib.optionhelper import to_ollama_options

op = to_ollama_options("top_p=0.9;temperature=0.8")
ostream = ollama.chat(
    model="llama3.1",
    options=op,          # the options parsed from string
    ...
)

[!IMPORTANT] For the code above to work, you need to have (1) Ollama installed and running, the llama3.1 model installed in Ollama (ollama pull llama3.1), and (3) your Python project needs to have the Ollama Python module installed via, e.g., uv add ollama.

Alternatively, the following is also a valid use case

import ollama
from dm_ollamalib.optionhelper import to_ollama_options

op: ollama.Options = ollama.Options()

for s in ["top_p=0.9", "temperature=0.8"]
  op = to_ollama_options(s, op)

ostream = ollama.chat(
    model="llama3.1",
    options=op,          # the options parsed from all strings
    ...
)

Notes

The GitHub repository comes with all files I currently use for Python development across multiple platforms. Notably:

  • configuration of the Python environment via uv: pyproject.toml and uv.lock
  • configuration for linter and code formatter ruff: ruff.toml
  • configuration for pylint: .pylintrc
  • git ignore files: .gitignore
  • configuration for pre-commit: .pre-commit-config.yaml. The script used to check git commit summary message is in devsupport/check_commitsummary.py
  • configuration for VSCode editor: .vscode directory

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dm_ollamalib-0.2.0.tar.gz (29.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dm_ollamalib-0.2.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file dm_ollamalib-0.2.0.tar.gz.

File metadata

  • Download URL: dm_ollamalib-0.2.0.tar.gz
  • Upload date:
  • Size: 29.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.3

File hashes

Hashes for dm_ollamalib-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b5bcbd5d3a757c938cc4e7879b05781afc713ee9b3d02c8698a383b45640c823
MD5 42c222ed5b3edb54620c759e0a1053ba
BLAKE2b-256 972ac3487bdf3710118255fc9372533654d4a8b436d8b9169a1dc14033ec3961

See more details on using hashes here.

File details

Details for the file dm_ollamalib-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for dm_ollamalib-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 460025300f4a9598671f957da22850175c56292bd213bd95b6cf6493641b541a
MD5 90381dd56ba6990cab406c8de958a8f9
BLAKE2b-256 6649bdc25864af12873f15b5ecfcd19949ee4db7227e6c69ef7899188ebcf3b4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page