Metadata-Version: 2.4
Name: ollama-call
Version: 1.0.0
Summary: A simple Python wrapper for Ollama API
Author-email: Demensdeum <your-email@example.com>
Project-URL: Homepage, https://github.com/demensdeum/ollama_call
Project-URL: Bug Tracker, https://github.com/demensdeum/ollama_call/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

# ollama-call

A simple Python wrapper for Ollama API calls.

## Installation

```bash
pip install ollama-call
```

## Usage

```python
from ollama_call import ollama_call

response = ollama_call(
    user_prompt="Hello, how are you?",
    format="json",
    model="gemma3:12b"
)

print(response)
```

## Features

- Simple function-based API
- Supports JSON output format
- Supports streaming (via `stream=True`)
- Custom temperature and timeout settings
