https://github.com/vpk11/lowe-cli
LoweCLI - AI Powered Command Line Tool
https://github.com/vpk11/lowe-cli
ai artificial-intelligence cli fastapi gemini-ai langchain python python3 ruff uv
Last synced: about 1 month ago
JSON representation
LoweCLI - AI Powered Command Line Tool
- Host: GitHub
- URL: https://github.com/vpk11/lowe-cli
- Owner: vpk11
- Created: 2025-05-30T17:39:09.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-06T18:46:31.000Z (11 months ago)
- Last Synced: 2025-08-06T19:17:24.939Z (11 months ago)
- Topics: ai, artificial-intelligence, cli, fastapi, gemini-ai, langchain, python, python3, ruff, uv
- Language: Python
- Homepage:
- Size: 1.61 MB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 👨💻 LoweCLI - AI Powered Command Line Tool 👨💻

LoweCLI is a command line tool that uses AI to help you with various tasks. It can assist with code debugging, command suggestions, document lookup and more. The tool is designed to be easy to use and integrate into your workflow.
## Features🚀
- AI Powered error debugging.
- Fast documentation search for programming languages
- Get command suggestions based on your command history
- Use RAG to answer questions about the indexed knowledge base
## Technology Stack🚀
- **Python 3.13**
- **[uv](https://docs.astral.sh/uv/)** package management
- **Langchain** for LLM and vector store integration
- **Gemini AI** for llm inference
- **ChromeDB** for vector storage
## Installation🚀
- Setup `.env` file:
```sh
cp .env.example .env
```
- Edit the `.env` file to configure the following environment variables:
- `GEMINI_API_KEY`: Your Gemini API key.
- `KNOWLEDGE_BASE_URL`: The URL of the knowledge base app (e.g., `http://localhost:4000` if running locally).
- `MODEL_NAME`: The name of the model you want to use (e.g., `gemini-2.0-flash`).
- `MODEL_PROVIDER`: The provider of the model you want to use (e.g., `google_genai`).
- Install the `uv` package manager: https://docs.astral.sh/uv/getting-started/installation/
- Change directory to lowe-cli:
```sh
cd lowe-cli
```
- Install the package using `uv`:
```sh
uv sync
```
- Run the CLI tool:
```sh
bin/lowe-cli
```
---
**To install globally, do the following steps:**\
Add the following to your `.bashrc` or `.zshrc` file to set up the environment:
```sh
export PATH=/PATH_TO_INSTALLATION/bin/:$PATH
```
Run lowe-cli from the command line:
```sh
lowe-cli
```
---
## Team🚀
> Our Contributors
---
## References🚀
- [Python 3.13 Documentation](https://docs.python.org/3.13/)
- [Langchain Documentation](https://python.langchain.com/docs/introduction/)
- [Gemini AI Documentation](https://ai.google.dev/gemini-api/docs)
- [uv Documentation](https://docs.astral.sh/uv/)