Download the PHP package carmelosantana/coqui-toolkit-ollama without Composer
On this page you can find all versions of the php package carmelosantana/coqui-toolkit-ollama. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download carmelosantana/coqui-toolkit-ollama
More information about carmelosantana/coqui-toolkit-ollama
Files in carmelosantana/coqui-toolkit-ollama
Package coqui-toolkit-ollama
Short Description Ollama model management toolkit for Coqui — list, pull, delete, create, and search models via the Ollama REST API
License MIT
Informations about the package coqui-toolkit-ollama
coqui-toolkit-ollama
Ollama model management toolkit for Coqui. Provides a single ollama tool with 11 actions for managing local Ollama models, searching the registry, generating embeddings, and more.
Requirements
- PHP 8.4+
- Ollama running locally or accessible via network
- Coqui with
carmelosantana/php-agents ^0.7
Installation
The toolkit is auto-discovered by Coqui on startup — no configuration needed.
Configuration
By default, the toolkit connects to http://localhost:11434. To use a different Ollama server, set the OLLAMA_HOST credential:
Or set it in your environment before starting Coqui:
Actions
| Action | Description | Required 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
List installed models
Search and pull a model
Background pull (recommended for large models)
Create a custom model
Update all models in the background
Generate embeddings
Tool Gating
The delete and create actions require user confirmation before executing. This can be bypassed with the --auto-approve flag.
Development
License
MIT