PHPackages                             carmelosantana/coqui-toolkit-ollama - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. carmelosantana/coqui-toolkit-ollama

ActiveLibrary

carmelosantana/coqui-toolkit-ollama
===================================

Ollama model management toolkit for Coqui — list, pull, delete, create, and search models via the Ollama REST API

v0.1.0(1mo ago)00MITPHPPHP ^8.4CI failing

Since Apr 9Pushed 1mo agoCompare

[ Source](https://github.com/carmelosantana/coqui-ollama)[ Packagist](https://packagist.org/packages/carmelosantana/coqui-toolkit-ollama)[ RSS](/packages/carmelosantana-coqui-toolkit-ollama/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (4)Versions (2)Used By (0)

coqui-toolkit-ollama
====================

[](#coqui-toolkit-ollama)

Ollama model management toolkit for [Coqui](https://github.com/carmelosantana/coqui). Provides a single `ollama` tool with 11 actions for managing local Ollama models, searching the registry, generating embeddings, and more.

Requirements
------------

[](#requirements)

- PHP 8.4+
- [Ollama](https://ollama.com) running locally or accessible via network
- Coqui with `carmelosantana/php-agents ^0.7`

Installation
------------

[](#installation)

```
composer require coquibot/coqui-toolkit-ollama
```

The toolkit is auto-discovered by Coqui on startup — no configuration needed.

Configuration
-------------

[](#configuration)

By default, the toolkit connects to `http://localhost:11434`. To use a different Ollama server, set the `OLLAMA_HOST` credential:

```
credentials(action: "set", key: "OLLAMA_HOST", value: "http://my-server:11434")

```

Or set it in your environment before starting Coqui:

```
export OLLAMA_HOST=http://my-server:11434
```

Actions
-------

[](#actions)

ActionDescriptionRequired Parameters`list`List all locally installed models—`show`Show detailed model information`model``pull`Download a model from the registry`model``delete`Delete a local model (gated)`model``copy`Copy a model to a new name`model`, `destination``create`Create a custom model (gated)`model``running`List models loaded in memory—`search`Search the Ollama registry`query``embed`Generate embeddings`model`, `input``version`Show Ollama server version—`update_all`Pull latest for all installed models—Usage Examples
--------------

[](#usage-examples)

### List installed models

[](#list-installed-models)

```
ollama(action: "list")

```

### Search and pull a model

[](#search-and-pull-a-model)

```
ollama(action: "search", query: "code assistant")
ollama(action: "pull", model: "qwen2.5-coder:7b")

```

### Background pull (recommended for large models)

[](#background-pull-recommended-for-large-models)

```
start_background_tool(
    tool_name: "ollama",
    arguments: '{"action": "pull", "model": "llama3.3:70b"}',
    title: "Pulling llama3.3 70B"
)

```

### Create a custom model

[](#create-a-custom-model)

```
ollama(action: "create", model: "my-assistant", from: "llama3.3", system: "You are a concise technical writer.")

```

### Update all models in the background

[](#update-all-models-in-the-background)

```
start_background_tool(
    tool_name: "ollama",
    arguments: '{"action": "update_all"}',
    title: "Updating all Ollama models"
)

```

### Generate embeddings

[](#generate-embeddings)

```
ollama(action: "embed", model: "nomic-embed-text", input: "Hello world")

```

Tool Gating
-----------

[](#tool-gating)

The `delete` and `create` actions require user confirmation before executing. This can be bypassed with the `--auto-approve` flag.

Development
-----------

[](#development)

```
# Install dependencies
composer install

# Run tests
composer test

# Run static analysis
composer analyse
```

License
-------

[](#license)

MIT

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance93

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

34d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/597820?v=4)[Carmelo Santana](/maintainers/carmelosantana)[@carmelosantana](https://github.com/carmelosantana)

---

Top Contributors

[![carmelosantana](https://avatars.githubusercontent.com/u/597820?v=4)](https://github.com/carmelosantana "carmelosantana (1 commits)")

---

Tags

toolkitphp-agentscoquillmollamamodel-management

###  Code Quality

TestsPest

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/carmelosantana-coqui-toolkit-ollama/health.svg)

```
[![Health](https://phpackages.com/badges/carmelosantana-coqui-toolkit-ollama/health.svg)](https://phpackages.com/packages/carmelosantana-coqui-toolkit-ollama)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
