ollama-python


Nameollama-python JSON
Version 0.1.2 PyPI version JSON
download
home_page
Summary
upload_time2024-01-17 12:41:29
maintainer
docs_urlNone
authorRichard
requires_python>=3.9,<4.0
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Ollama Python Library
The ollama python library provides the easiest way to integrate your python project with [Ollama](https://github.com/KennyRich/ollama-python)


## Getting Started
This requires a python version of 3.9 or higher

```shell
pip install ollama-python
```

The python package splits the functionality into three core endpoints
1. Model Management Endpoints: This includes the ability to create, delete, pull, push and list models amongst others
2. Generate Endpoint: This includes the generate and chat endpoints in Ollama
3. Embedding Endpoint: This includes the ability to generate embeddings for a given text

Pydantic is used to verify user input and Responses from the server are parsed into pydantic models

## Example Usage
### Generate Endpoint
#### Completions (Generate)
##### Without Streaming
```python
from ollama_python.endpoints import GenerateAPI

api = GenerateAPI(base_url="http://localhost:8000", model="mistral")
result = api.generate(prompt="Hello World", options=dict(num_tokens=10), format="json")
```

##### With Streaming
```python
from ollama_python.endpoints import GenerateAPI

api = GenerateAPI(base_url="http://localhost:8000", model="mistral")
for res in api.generate(prompt="Hello World", options=dict(num_tokens=10), format="json", stream=True):
    print(res.response)
```

#### Chat Completions
##### Without Streaming
```python
from ollama_python.endpoints import GenerateAPI

api = GenerateAPI(base_url="http://localhost:8000", model="mistral")
messages = [{'role': 'user', 'content': 'Why is the sky blue?'}]

result = api.generate_chat_completion(messages=messages, options=dict(num_tokens=10), format="json")
```

##### With Streaming
```python
from ollama_python.endpoints import GenerateAPI

api = GenerateAPI(base_url="http://localhost:8000", model="mistral")
messages = [{'role': 'user', 'content': 'Why is the sky blue?'}]

for res in api.generate_chat_completion(messages=messages, options=dict(num_tokens=10), format="json", stream=True):
    print(res.message)
```

###### Chat request with images
```python
from ollama_python.endpoints import GenerateAPI

api = GenerateAPI(base_url="http://localhost:8000", model="llava")
messages = [{'role': 'user', 'content': 'What is in this image', 'image': 'iVBORw0KGgoAAAANSUhEUgAAAG0AAABmCAYAAADBPx+VAAAACXBIWXMAAAsTAAALEwEAmp'}]

result = api.generate_chat_completion(messages=messages, options=dict(num_tokens=10), format="json")
print(result.message)
```


### Embeddings Endpoint
#### Generate Embeddings
```python
from ollama_python.endpoints import EmbeddingAPI

api = EmbeddingAPI(base_url="http://localhost:8000", model="mistral")
result = api.get_embedding(prompt="Hello World", options=dict(seed=10))
```

### Model Management Endpoints
####  Create a model
##### Without Streaming
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.create(name="test_model", model_file="random model_file")
```
##### With Streaming
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
for res in api.create(name="test_model", model_file="random model_file", stream=True):
    print(res.status)
```

### Check if a blob exists
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.check_blob_exists(digest="sha256:29fdb92e57cf0827ded04ae6461b5931d01fa595843f55d36f5b275a52087dd2")
```

### Create a blob
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.create_blob(digest="sha256:29fdb92e57cf0827ded04ae6461b5931d01fa595843f55d36f5b275a52087dd2")
```

### List local models
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.list_local_models()

print(result.models)
```

### Show model information
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.show(name="mistral")

print(result.details)
```

### Copy a model
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.copy(source="mistral", destination="mistral_copy")
```

### Delete a model
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
api.delete(name="mistral_copy")
```

### Pull a model
##### Without Streaming
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.pull(name="mistral")
print(result.status)
```

##### With Streaming
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
for res in api.pull(name="mistral", stream=True):
    print(res.status)
```

### Push a model
##### Without Streaming
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
result = api.push(name="mistral")
print(result.status)
```

##### With Streaming
```python
from ollama_python.endpoints import ModelManagementAPI

api = ModelManagementAPI(base_url="http://localhost:8000")
for res in api.push(name="mistral", stream=True):
    print(res.status)
```



### Valid Options/Parameters

| Parameter      | Description                                                                                                                                                                                                                                             | Value Type | Example Usage        |
| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -------------------- |
| mirostat       | Enable Mirostat sampling for controlling perplexity. (default: 0, 0 = disabled, 1 = Mirostat, 2 = Mirostat 2.0)                                                                                                                                         | int        | mirostat 0           |
| mirostat_eta   | Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)                        | float      | mirostat_eta 0.1     |
| mirostat_tau   | Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)                                                                                                         | float      | mirostat_tau 5.0     |
| num_ctx        | Sets the size of the context window used to generate the next token. (Default: 2048)                                                                                                                                                                    | int        | num_ctx 4096         |
| num_gqa        | The number of GQA groups in the transformer layer. Required for some models, for example it is 8 for llama2:70b                                                                                                                                         | int        | num_gqa 1            |
| num_gpu        | The number of layers to send to the GPU(s). On macOS it defaults to 1 to enable metal support, 0 to disable.                                                                                                                                            | int        | num_gpu 50           |
| num_thread     | Sets the number of threads to use during computation. By default, Ollama will detect this for optimal performance. It is recommended to set this value to the number of physical CPU cores your system has (as opposed to the logical number of cores). | int        | num_thread 8         |
| repeat_last_n  | Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)                                                                                                                                           | int        | repeat_last_n 64     |
| repeat_penalty | Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)                                                                     | float      | repeat_penalty 1.1   |
| temperature    | The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)                                                                                                                                     | float      | temperature 0.7      |
| seed           | Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: 0)                                                                                       | int        | seed 42              |
| stop           | Sets the stop sequences to use. When this pattern is encountered the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate `stop` parameters in a modelfile.                                      | string     | stop "AI assistant:" |
| tfs_z          | Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)                                               | float      | tfs_z 1              |
| num_predict    | Maximum number of tokens to predict when generating text. (Default: 128, -1 = infinite generation, -2 = fill context)                                                                                                                                   | int        | num_predict 42       |
| top_k          | Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)                                                                        | int        | top_k 40             |
| top_p          | Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)                                                                 | float      | top_p 0.9            |


## Todo
Add support for Asynchronous version of the library

## To Contribute
1. Clone the repo
2. Run `poetry install`
3. Run `pre-commit install`

Then you're ready to contribute to the repo


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ollama-python",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Richard",
    "author_email": "kogunyale01@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/1a/ce/4b706a333f1dbf0cea1745e121b135f8df378f9ea6df019de2eedadf40ef/ollama_python-0.1.2.tar.gz",
    "platform": null,
    "description": "# Ollama Python Library\nThe ollama python library provides the easiest way to integrate your python project with [Ollama](https://github.com/KennyRich/ollama-python)\n\n\n## Getting Started\nThis requires a python version of 3.9 or higher\n\n```shell\npip install ollama-python\n```\n\nThe python package splits the functionality into three core endpoints\n1. Model Management Endpoints: This includes the ability to create, delete, pull, push and list models amongst others\n2. Generate Endpoint: This includes the generate and chat endpoints in Ollama\n3. Embedding Endpoint: This includes the ability to generate embeddings for a given text\n\nPydantic is used to verify user input and Responses from the server are parsed into pydantic models\n\n## Example Usage\n### Generate Endpoint\n#### Completions (Generate)\n##### Without Streaming\n```python\nfrom ollama_python.endpoints import GenerateAPI\n\napi = GenerateAPI(base_url=\"http://localhost:8000\", model=\"mistral\")\nresult = api.generate(prompt=\"Hello World\", options=dict(num_tokens=10), format=\"json\")\n```\n\n##### With Streaming\n```python\nfrom ollama_python.endpoints import GenerateAPI\n\napi = GenerateAPI(base_url=\"http://localhost:8000\", model=\"mistral\")\nfor res in api.generate(prompt=\"Hello World\", options=dict(num_tokens=10), format=\"json\", stream=True):\n    print(res.response)\n```\n\n#### Chat Completions\n##### Without Streaming\n```python\nfrom ollama_python.endpoints import GenerateAPI\n\napi = GenerateAPI(base_url=\"http://localhost:8000\", model=\"mistral\")\nmessages = [{'role': 'user', 'content': 'Why is the sky blue?'}]\n\nresult = api.generate_chat_completion(messages=messages, options=dict(num_tokens=10), format=\"json\")\n```\n\n##### With Streaming\n```python\nfrom ollama_python.endpoints import GenerateAPI\n\napi = GenerateAPI(base_url=\"http://localhost:8000\", model=\"mistral\")\nmessages = [{'role': 'user', 'content': 'Why is the sky blue?'}]\n\nfor res in api.generate_chat_completion(messages=messages, options=dict(num_tokens=10), format=\"json\", stream=True):\n    print(res.message)\n```\n\n###### Chat request with images\n```python\nfrom ollama_python.endpoints import GenerateAPI\n\napi = GenerateAPI(base_url=\"http://localhost:8000\", model=\"llava\")\nmessages = [{'role': 'user', 'content': 'What is in this image', 'image': 'iVBORw0KGgoAAAANSUhEUgAAAG0AAABmCAYAAADBPx+VAAAACXBIWXMAAAsTAAALEwEAmp'}]\n\nresult = api.generate_chat_completion(messages=messages, options=dict(num_tokens=10), format=\"json\")\nprint(result.message)\n```\n\n\n### Embeddings Endpoint\n#### Generate Embeddings\n```python\nfrom ollama_python.endpoints import EmbeddingAPI\n\napi = EmbeddingAPI(base_url=\"http://localhost:8000\", model=\"mistral\")\nresult = api.get_embedding(prompt=\"Hello World\", options=dict(seed=10))\n```\n\n### Model Management Endpoints\n####  Create a model\n##### Without Streaming\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.create(name=\"test_model\", model_file=\"random model_file\")\n```\n##### With Streaming\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nfor res in api.create(name=\"test_model\", model_file=\"random model_file\", stream=True):\n    print(res.status)\n```\n\n### Check if a blob exists\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.check_blob_exists(digest=\"sha256:29fdb92e57cf0827ded04ae6461b5931d01fa595843f55d36f5b275a52087dd2\")\n```\n\n### Create a blob\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.create_blob(digest=\"sha256:29fdb92e57cf0827ded04ae6461b5931d01fa595843f55d36f5b275a52087dd2\")\n```\n\n### List local models\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.list_local_models()\n\nprint(result.models)\n```\n\n### Show model information\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.show(name=\"mistral\")\n\nprint(result.details)\n```\n\n### Copy a model\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.copy(source=\"mistral\", destination=\"mistral_copy\")\n```\n\n### Delete a model\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\napi.delete(name=\"mistral_copy\")\n```\n\n### Pull a model\n##### Without Streaming\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.pull(name=\"mistral\")\nprint(result.status)\n```\n\n##### With Streaming\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nfor res in api.pull(name=\"mistral\", stream=True):\n    print(res.status)\n```\n\n### Push a model\n##### Without Streaming\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nresult = api.push(name=\"mistral\")\nprint(result.status)\n```\n\n##### With Streaming\n```python\nfrom ollama_python.endpoints import ModelManagementAPI\n\napi = ModelManagementAPI(base_url=\"http://localhost:8000\")\nfor res in api.push(name=\"mistral\", stream=True):\n    print(res.status)\n```\n\n\n\n### Valid Options/Parameters\n\n| Parameter      | Description                                                                                                                                                                                                                                             | Value Type | Example Usage        |\n| -------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -------------------- |\n| mirostat       | Enable Mirostat sampling for controlling perplexity. (default: 0, 0 = disabled, 1 = Mirostat, 2 = Mirostat 2.0)                                                                                                                                         | int        | mirostat 0           |\n| mirostat_eta   | Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)                        | float      | mirostat_eta 0.1     |\n| mirostat_tau   | Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)                                                                                                         | float      | mirostat_tau 5.0     |\n| num_ctx        | Sets the size of the context window used to generate the next token. (Default: 2048)                                                                                                                                                                    | int        | num_ctx 4096         |\n| num_gqa        | The number of GQA groups in the transformer layer. Required for some models, for example it is 8 for llama2:70b                                                                                                                                         | int        | num_gqa 1            |\n| num_gpu        | The number of layers to send to the GPU(s). On macOS it defaults to 1 to enable metal support, 0 to disable.                                                                                                                                            | int        | num_gpu 50           |\n| num_thread     | Sets the number of threads to use during computation. By default, Ollama will detect this for optimal performance. It is recommended to set this value to the number of physical CPU cores your system has (as opposed to the logical number of cores). | int        | num_thread 8         |\n| repeat_last_n  | Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)                                                                                                                                           | int        | repeat_last_n 64     |\n| repeat_penalty | Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)                                                                     | float      | repeat_penalty 1.1   |\n| temperature    | The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)                                                                                                                                     | float      | temperature 0.7      |\n| seed           | Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: 0)                                                                                       | int        | seed 42              |\n| stop           | Sets the stop sequences to use. When this pattern is encountered the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate `stop` parameters in a modelfile.                                      | string     | stop \"AI assistant:\" |\n| tfs_z          | Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)                                               | float      | tfs_z 1              |\n| num_predict    | Maximum number of tokens to predict when generating text. (Default: 128, -1 = infinite generation, -2 = fill context)                                                                                                                                   | int        | num_predict 42       |\n| top_k          | Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)                                                                        | int        | top_k 40             |\n| top_p          | Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)                                                                 | float      | top_p 0.9            |\n\n\n## Todo\nAdd support for Asynchronous version of the library\n\n## To Contribute\n1. Clone the repo\n2. Run `poetry install`\n3. Run `pre-commit install`\n\nThen you're ready to contribute to the repo\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "",
    "version": "0.1.2",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcd3552575843a7e475f6a3a573ccdcac0a9046e03330e29d0416d3d5cc7d5ba",
                "md5": "c703789da81d7f919fe04791ddcc7d36",
                "sha256": "0b0d2fcd97d823a424446c02febb7c7f7188287c01e5ee7210d0e42ca928644a"
            },
            "downloads": -1,
            "filename": "ollama_python-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c703789da81d7f919fe04791ddcc7d36",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 16247,
            "upload_time": "2024-01-17T12:41:28",
            "upload_time_iso_8601": "2024-01-17T12:41:28.013741Z",
            "url": "https://files.pythonhosted.org/packages/bc/d3/552575843a7e475f6a3a573ccdcac0a9046e03330e29d0416d3d5cc7d5ba/ollama_python-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ace4b706a333f1dbf0cea1745e121b135f8df378f9ea6df019de2eedadf40ef",
                "md5": "ad147646c0ba362d3f435af0e57fa375",
                "sha256": "85161427858a77603bf035e1d7acefcd330d656a9b95bae79c5f55cced3b3e30"
            },
            "downloads": -1,
            "filename": "ollama_python-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "ad147646c0ba362d3f435af0e57fa375",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 14065,
            "upload_time": "2024-01-17T12:41:29",
            "upload_time_iso_8601": "2024-01-17T12:41:29.089524Z",
            "url": "https://files.pythonhosted.org/packages/1a/ce/4b706a333f1dbf0cea1745e121b135f8df378f9ea6df019de2eedadf40ef/ollama_python-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-17 12:41:29",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ollama-python"
}
        
Elapsed time: 0.16664s