Metadata-Version: 2.3
Name: runllama
Version: 0.1.2
Summary: Simple CLI runner for Ollama (LLM) models
License: MIT
Author: Manasseh
Author-email: believemanasseh@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: click (==8.1.8)
Requires-Dist: ollama (==0.4.7)
Project-URL: homepage, https://github.com/believemanasseh/RunLlama
Project-URL: issues, https://github.com/believemanasseh/RunLlama/issues
Description-Content-Type: text/markdown

# RunLlama

Simple CLI tool for [Ollama (LLM) models](https://ollama.com/search).

## Installation

Install via pip:

```bash
pip install runllama
```

Or with Poetry:

```bash
poetry add runllama
```

Run the CLI:

```bash
runllama --help
```

## For Development

Build and run ollama server docker container

```bash
docker build -t runllama .
docker run -d -p 11434:11434 -v ollama:/app/.ollama --name runllama runllama 
```

Install dependencies

```bash
poetry install
poetry shell
```

Run Python script

```bash
python src/main.py --help
```

## License

The extension source code is licensed under the MIT License (see [LICENSE](LICENSE)).

