No project description provided
Project description
Shell-AI: Your Intelligent Command-Line Companion
Shell-AI (shai
) is a CLI utility that brings the power of natural language understanding to your command line. Simply input what you want to do in natural language, and shai
will suggest single-line commands that achieve your intent. Under the hood, Shell-AI leverages the LangChain for LLM use and builds on the excellent InquirerPy for the interactive CLI.
Installation
You can install Shell-AI directly from PyPI using pip:
pip install shell-ai
After installation, you can invoke the utility using the shai
command.
Usage
To use Shell-AI, open your terminal and type:
shai run terraform dry run thingy
Shell-AI will then suggest 3 commands to fulfill your request:
terraform plan
terraform plan -input=false
terraform plan
Features
- Natural Language Input: Describe what you want to do in plain English (or other supported languages).
- Command Suggestions: Get single-line command suggestions that accomplish what you asked for.
- Cross-Platform: Works on Linux, macOS, and Windows.
Configuration
Environment Variables
OPENAI_API_KEY
: Required. Set this environment variable to your OpenAI API key. You can find it on your OpenAI Dashboard.
Optional Variables
OPENAI_MODEL
: Defaults togpt-3.5-turbo
. You can set it to another OpenAI model if desired.SHAI_SUGGESTION_COUNT
: Defaults to 3. You can set it to specify the number of suggestions to generate.OPENAI_API_BASE
: Defaults tohttps://api.openai.com/v1
. You can set it to specify the proxy or service emulator.OPENAI_ORGANIZATION
: OpenAI Organization IDOPENAI_PROXY
: OpenAI proxy
Configuration File
Alternatively, you can store these variables in a JSON configuration file:
- For Linux/macOS: Create a file called
config.json
under~/.config/shell-ai/
and secure it withchmod 600 ~/.config/shell-ai/config.json
. - For Windows: Create a file called
config.json
under%APPDATA%\shell-ai\
Example config.json
:
{
"OPENAI_API_KEY": "your_openai_api_key_here",
"OPENAI_MODEL": "gpt-3.5-turbo",
"SHAI_SUGGESTION_COUNT": "3"
}
The application will read from this file if it exists, overriding any existing environment variables.
Run the application after setting these configurations.
Contributing
This implementation can be made much smarter! Contribute your ideas as Pull Requests and make AI Shell better for everyone.
Contributions are welcome! Please read the CONTRIBUTING.md for guidelines.
License
Shell-AI is licensed under the MIT License. See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file shell-ai-0.3.10.tar.gz
.
File metadata
- Download URL: shell-ai-0.3.10.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51ac5aeb506666ae3855ff9e9b1a7797c8260a4757b2111e0eca0f98cd8080bf |
|
MD5 | 47ff501de2375744384d5e5c09f4a65e |
|
BLAKE2b-256 | 254e2fc2631130420f5eef9159c82789da7b8bbf671d7f536dc756890564e7e4 |
File details
Details for the file shell_ai-0.3.10-py3-none-any.whl
.
File metadata
- Download URL: shell_ai-0.3.10-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56b0015a6cf37575abdb75728b8e949160945ec4a750d7bd95e9bc21f66f9ce5 |
|
MD5 | 555fbc28c612062a0f1a2375eb0cdc89 |
|
BLAKE2b-256 | 5baad2445cdf2905b99a0808f3d4a213a7b3b21be9e3d47c142072649f602eac |