NOTE: ALL ACTIVE DEVELOPMENT: https://github.com/lershi-devlabs/yo
Ask your terminal anything using AI (OpenAI or Ollama).
- Ask questions directly from your terminal using natural language
- Supports both OpenAI and Ollama as AI backends
- Simple CLI: use
yo <question>oryo ask <question> - Easily configurable
Precompiled binaries for macOS, Linux, and Windows are available on the Releases page. Download the appropriate binary for your platform, extract it, and move it to a directory in your PATH.
You can install yo using Homebrew:
brew tap montekkundan/yo https://github.com/montekkundan/yo.git
brew install montekkundan/yo/yo-binIf you have Rust installed, you can install with Cargo:
cargo install yoClone the repository and build with Cargo:
git clone https://github.com/montekkundan/yo.git
cd yo
cargo install --path .Or build and run directly:
cargo run -- <your question>You can ask questions in two ways:
yo ask What is the capital of France?
# or simply
yo What is the capital of France?yo Summarize the Rust ownership model.The tool supports configuration for different AI backends (OpenAI, Ollama). See the documentation or run yo help for more details.
To push your changes to GitHub, use the following steps:
git add .
git commit -m "changes here"
git tag v1.0.0 # necessary when new version is released
# replace v1.0.0 with the version you are releasing
git push
# To push tags as well:
git push --tagsSee CHANGELOG.md for a list of changes and version history.
MIT