-
Notifications
You must be signed in to change notification settings - Fork 20
Releases: graiz/cbot
Releases · graiz/cbot
v1.1.2: GPT-5-mini Documentation Update
What's New in v1.1.2
Documentation Updates
- ✅ Updated all GPT-3 references to GPT-5-mini throughout README
- ✅ Fixed OpenAI API key URL (beta.openai.com → platform.openai.com)
- ✅ Improved installation instructions
Bug Fixes & Improvements
- 🔧 Enhanced error messages to clearly distinguish between:
- API key issues
- OpenAI library version issues
- Network connectivity problems
- 🔧 Added
openai>=2.0.0dependency requirement to prevent compatibility errors
Install
pip install cbot-command
Upgrade
pip install --upgrade cbot-command
Full Changelog: v1.0.3...v1.1.2
Assets 2
v1.1.1: OpenAI 2.x Compatibility Fix
What's Fixed in v1.1.1
Critical Dependency Fix
- 🔧 Added
openai>=2.0.0requirement to setup.py - 🔧 Fixed
'OpenAI' object has no attribute 'responses'error - 🔧 Improved error messages to identify version compatibility issues
Problem Solved
Users installing cbot-command were getting openai 1.x by default, which doesn't support the Responses API used by cbot. This release ensures openai 2.x+ is automatically installed.
Install
pip install cbot-command
Assets 2
v1.1.0: Interactive Shell Mode 🆕
Major New Feature: Interactive Mode! 🎉
Interactive Shell Mode
Use -i flag for a conversational command-line experience:
cbot -i 🤖 Cbot Interactive Mode Type your commands naturally. Type 'exit' or 'quit' to leave. cbot ➜ Me> list files cbot> ls -la [files are listed] cbot ➜ Me> create a test directory cbot> mkdir test cbot ➜ Me> change to that directory cbot> cd test
Features
- 🗣️ Natural language command interface
- ⚡ Automatic execution with immediate output
- 🧠 Context-aware: remembers your previous commands
- 📍 Smart directory display (basename-only, like modern shells)
- 🎨 Color-coded output (directory in cyan, cbot commands in green)
- 💾 Caching for faster repeated commands
Model Upgrade
- 🚀 Migrated from GPT-4 to GPT-5-mini (using OpenAI Responses API)
- 📉 Faster responses with minimal reasoning effort
- 💰 More cost-effective
Install
pip install cbot-command
Note: Requires openai>=2.0.0