Npahlfer / ooo

A CLI for piping outputs to ollama or just prompting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OOO

Prompt Ollama from the command line either through the stdin or just as a normal prompt.
You need to have Ollama installed in order to use ooo.

Examples:

$ ls -lah | ooo I will give you an input from the terminal command ls -lah, can you take the filenames and use them as keys in a json format, and the value for each key is the permissions, far left

Or you can use the --user flag to specify another order of the input.

$ ls -lah | ooo --model llama2 --user "I'll give you an input from the terminal command 'ls -lah', can you take the filenames and use them as keys in a json format, and the value for each key is the permissions, far left"

Output:

{
".": "drwxr-xr-x",
"..": "drwxr-xr-x",
".git": "drwxr-xr-x",
".gitignore": "-rw-r--r--",
"Cargo.lock": "-rw-r--r--",
"Cargo.toml": "-rw-r--r--",
"README.md": "-rw-r--r--",
"src": "drwxr-xr-x",
"target": "drwxr-xr-x"
}

Or just do normal prompting.

$ ooo whats the tallest building\?
$ ooo --user "whats the tallest building?"

Output:

The tallest building in the world is the Burj Khalifa, located in Dubai, United Arab Emirates. Its height is 828 meters (2,716 feet)

Install

brew tap nictap/tap
brew install ooo

Options

Flag Default
--user ''
--system (see below)
--model mistral
--port 11434
--url http://localhost

System default

"You are a command-line program that takes an input and provides an output ONLY. Give me only the output, without any additional labels (e.g., 'Output' or 'Result'). The output should be usable as input in another program that is not an LLM. Avoid unnecessary chat. No preamble, get straight to the point. Generate a text response suitable for downstream processing by another program. Do not change the content of the input unless specifically asked to. Do not repeat back the input."


(ooo isn't an acronym for anything, just easy to type. Lets say it's "Ollama -something")

About

A CLI for piping outputs to ollama or just prompting

License:MIT License


Languages

Language:Rust 100.0%