First Worker
With a worker running from the installation step, you’re ready to dispatch a job.
Dispatch a job
Section titled “Dispatch a job”modelreins job dispatch --prompt "What are the top 3 benefits of distributed computing?"The CLI returns a job ID immediately:
Job dispatched: job_a1b2c3d4Status: pendingWorker: waiting for assignment...Check the result
Section titled “Check the result”modelreins job result job_a1b2c3d4Once the worker picks up and completes the job, you’ll see the full output.
Watch jobs in real time
Section titled “Watch jobs in real time”modelreins job watchThis streams job status changes as they happen — useful during development.
Run a job with file input
Section titled “Run a job with file input”modelreins job dispatch \ --prompt "Summarize this file in 3 bullet points" \ --input ./README.mdNext steps
Section titled “Next steps”- Connect the Dashboard to monitor jobs visually.
- Configure routing to direct jobs to specific providers.
- Add more workers to increase throughput.