🤖 AI Bot Agent - Intelligent command line assistant with chat, code generation, file analysis, and web search capabilities
Project description
🤖 AI Bot Agent
A powerful AI assistant that runs from the command line with various capabilities including chat, code generation, file analysis, and web search.
Features
- Interactive Chat Mode: Have conversations with the AI
- Code Generation: Generate code from natural language descriptions
- File Analysis: Analyze and get insights about your files
- Web Search: Search for information on the web
- Rich CLI Interface: Beautiful terminal interface with colors and formatting
- Conversation History: Maintains context across interactions
- Multiple AI Models: Support for different OpenAI models
Installation
Prerequisites
- Python 3.8 or higher
- OpenAI API key
Quick Start
-
Clone or download the project
git clone <repository-url> cd cli-smart
-
Install dependencies
pip install -r requirements.txt
-
Set up your API key
cp env.example .env # Edit .env and add your OpenAI API key
-
Run the bot
python main.py --help
Alternative Installation
You can also install it as a package:
pip install -e .
Then run it as:
ai-bot --help
Usage
Interactive Chat Mode
Start an interactive conversation with the AI:
python main.py chat
Ask a Single Question
Ask a specific question:
python main.py ask "What is machine learning?"
Generate Code
Generate code from a description:
python main.py code "Create a simple web scraper"
Generate code in a specific language:
python main.py code "Create a REST API" --lang javascript
Analyze Files
Analyze a file and get insights:
python main.py analyze main.py
Search the Web
Search for information:
python main.py search "latest Python features"
Clear History
Clear conversation history:
python main.py clear
Get Help
Show help information:
python main.py help
Configuration
Create a .env file in the project root with your configuration:
# OpenAI API Configuration
OPENAI_API_KEY=your_openai_api_key_here
# Optional: Customize the AI model
OPENAI_MODEL=gpt-3.5-turbo
# Optional: Set default temperature for responses
OPENAI_TEMPERATURE=0.7
# Optional: Set maximum tokens for responses
OPENAI_MAX_TOKENS=1000
Examples
Chat Mode Examples
You: What is Python?
AI Bot: Python is a high-level, interpreted programming language...
You: Write a function to calculate fibonacci numbers
AI Bot: Here's a Python function to calculate Fibonacci numbers...
You: Explain machine learning in simple terms
AI Bot: Machine learning is like teaching a computer to learn...
Code Generation Examples
# Generate a Python web scraper
python main.py code "Create a web scraper that extracts titles from a news website"
# Generate a JavaScript function
python main.py code "Create a function to validate email addresses" --lang javascript
# Generate a data analysis script
python main.py code "Create a script to analyze CSV data and create visualizations"
Features in Detail
Interactive Chat Mode
- Maintains conversation context
- Rich formatting with colors
- Easy-to-use interface
- Built-in commands (exit, clear, help)
Code Generation
- Supports multiple programming languages
- Generates complete, working code
- Includes explanations and usage examples
- Optimized for different use cases
File Analysis
- Analyzes code structure and purpose
- Identifies potential issues
- Provides improvement suggestions
- Works with various file types
Web Search
- Search for current information
- Get real-time data
- Research capabilities
- Information gathering
Troubleshooting
Common Issues
-
API Key Error
Error: OpenAI client not initialized. Please check your API key.Solution: Make sure your OpenAI API key is set in the
.envfile. -
Module Not Found
ModuleNotFoundError: No module named 'openai'Solution: Install dependencies with
pip install -r requirements.txt -
Permission Denied
PermissionError: [Errno 13] Permission deniedSolution: Make sure the script is executable:
chmod +x main.py
Getting Help
- Use
python main.py helpfor command help - Use
python main.py --helpfor general help - Check the logs for detailed error messages
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
Version History
- v1.0.0: Initial release with basic chat, code generation, and file analysis features
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ai_bot_agent-1.0.0.tar.gz.
File metadata
- Download URL: ai_bot_agent-1.0.0.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
172d7b4188d217909941e2528700c74365450d5bb13ccbd1f4b6f122a34bfa98
|
|
| MD5 |
e5a511edce74150aa0fc893a14c09212
|
|
| BLAKE2b-256 |
bc437d763fce3fc0edcd9865b57c05de2445715378850cc32771f8e3401d9c15
|
File details
Details for the file ai_bot_agent-1.0.0-py3-none-any.whl.
File metadata
- Download URL: ai_bot_agent-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8547913eda1d04a0ae0c0797ecda6582a0342eb1f598c073d11a5cfe14dfc5ec
|
|
| MD5 |
c16a4b48cf92f7a10bd73f7dd5b1b86c
|
|
| BLAKE2b-256 |
5c4e2b3473acce3b25581b362460cd1fd28a222c97358304163589ef20dc6856
|