Skip to main content

Pool Queue Runner

Pool is a local workflow queue manager designed for executing concurrent LLM calls and automated batch commands.


1. Setup

Install the Pool daemon tool:

npm install -g pool-runner

2. Configuration Settings

Orchestrate pool tasks using local GoingMerry daemon calls. Update your pool.config.json configuration file:

{
"concurrency": 4,
"default_runner": {
"provider": "merry",
"api_url": "http://localhost:11434",
"model": "gemma4"
}
}

3. Running Batch Tasks

Submit batch actions to the pool queue:

pool add "translate file1.txt to French"
pool add "translate file2.txt to French"

Pool coordinates queue execution, running actions in parallel using local GoingMerry instances.