argentini.ollamafarm
1.0.0
See the version list below for details.
dotnet tool install --global argentini.ollamafarm --version 1.0.0
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local argentini.ollamafarm --version 1.0.0
#tool dotnet:?package=argentini.ollamafarm&version=1.0.0
nuke :add-package argentini.ollamafarm --version 1.0.0
Ollama Farm
Ollama Farm is a CLI tool that intermediates REST API calls to multiple ollama API services. Simply make calls to the Ollama Farm REST API as if it were an ollama REST API and the rest is handled for you.
Installation
Install dotnet 8 or later from https://dotnet.microsoft.com/en-us/download and then install Ollama Farm with the following command:
dotnet tool install --global argentini.ollamafarm
You should relaunch Terminal/cmd/PowerShell so that the system path will be reloaded and the ollamafarm command can be found. If you've previously installed the dotnet runtime, this won't be necessary.
How To Use
Ollama Farm is a system-level command line interface application (CLI). After installing you can access Ollama Farm at any time.
To get help on the available commands, just run ollamafarm
in Terminal, cmd, or PowerShell.
ollamafarm
This will launch the application in help mode which displays the commands and options. For example, to launch it with one or more server addresses running the ollama API service on the default port:
ollamafarm localhost 192.168.0.5 192.168.0.6
It will listen on port 4444 for ollama API requests to /api/generate
. You would simply POST the same JSON request as you would to the ollama API service. The request will get sent to the first available host.
You can also change the listening port:
ollamafarm --port 5555 localhost 192.168.0.5 192.168.0.6
And if you run your ollama hosts on a custom port, just use colon syntax:
ollamafarm --port 5555 localhost:12345 192.168.0.5 192.168.0.6
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
Initial commit