Crates.io | ask-ollama |
lib.rs | ask-ollama |
version | 1.0.5 |
source | src |
created_at | 2023-11-30 23:40:04.725131 |
updated_at | 2023-12-01 02:17:12.586745 |
description | Query any LLM found on Ollama from the terminal! |
homepage | https://crates.io/crates/ask-ollama |
repository | https://github.com/HarrisonHemstreet/ask-ollama |
max_upload_size | |
id | 1054593 |
size | 15,019 |
Ask-Ollama is a command-line tool that allows users to interact with the Ollama LLM models directly from the terminal. This tool provides a simple and intuitive way to ask questions and receive responses from Ollama models.
To install Ask-Ollama, you need to have Rust and Cargo installed on your system. If you haven't already installed Rust, you can do so by following the instructions here.
Once Rust is installed, you can install Ask-Ollama using Cargo:
cargo install ask-ollama
After installation, you can start using Ask-Ollama by running:
ask [OPTIONS] [PROMPT]
--model=[MODEL]
: Specify the model to use (default is 'mistral').--version
: Display the version of the installed Ask-Ollama tool.[PROMPT]
: The question or prompt to send to Ollama. Quotation marks are not required.Asking a question using the default model:
ask "What is the capital of France?"
or
ask What is the capital of France?
Specifying a different model:
ask --model=gale "Explain the theory of relativity"
Find all available models from Ollama here.
Checking the version:
ask --version
Seeing the help info:
ask --help
Contributions to Ask-Ollama are welcome! If you have suggestions for improvements or encounter any issues, please feel free to open an issue or submit a pull request on our GitHub repository.
Ask-Ollama is licensed under the MIT License.