Added a lot of functionality. Better /help menu++

This commit is contained in:
2025-12-11 17:31:51 +01:00
parent 63722aabf9
commit a51d1f65e2
3 changed files with 950 additions and 223 deletions

204
README.md
View File

@@ -1,63 +1,209 @@
# oAI Chat App # oAI - OpenRouter AI Chat
A command-line interface for chatting with AI models via OpenRouter, supporting model selection, streaming responses, file attachments, credit tracking, and configurable settings. A terminal-based chat interface for OpenRouter API with conversation management, cost tracking, and rich formatting.
## Description
oAI is a command-line chat application that provides an interactive interface to OpenRouter's AI models. It features conversation persistence, file attachments, export capabilities, and detailed session metrics.
## Features ## Features
- Select and switch between OpenRouter models - Interactive chat with multiple AI models via OpenRouter
- Streaming or buffered responses - Model selection with search functionality
- Attach images and text files to messages - Conversation save/load/export (Markdown, JSON, HTML)
- View credit usage and balance - File attachment support (code files and images)
- Set persistent default model - Session cost tracking and credit monitoring
- Keyboard shortcuts and history - Rich terminal formatting with syntax highlighting
- Persistent command history
- Configurable system prompts and token limits
- SQLite-based configuration and conversation storage
## Requirements
- Python 3.7 or higher
- OpenRouter API key (get one at https://openrouter.ai)
## Installation ## Installation
Requires Python 3.8+. Download the repository. Install dependencies: ### 1. Install Dependencies
```bash Create a `requirements.txt` file with the following content:
pip install typer rich openrouter pyperclip requests prompt_toolkit
```
typer
rich
openrouter
pyperclip
prompt_toolkit
requests
``` ```
Or use : Install the dependencies:
```bash ```bash
pip install -r requiremnets.txt pip install -r requirements.txt
``` ```
For convience you can move the application to a folder in you `$PATH` and rename it to just `oai` . ### 2. Make the Script Executable
```bash
chmod +x oai.py
```
### 3. Copy to PATH
Copy the script to a directory in your `$PATH` environment variable. Common locations include:
```bash
# Option 1: System-wide (requires sudo)
sudo cp oai.py /usr/local/bin/oai
# Option 2: User-local (recommended)
mkdir -p ~/.local/bin
cp oai.py ~/.local/bin/oai
# Add to PATH if not already (add to ~/.bashrc or ~/.zshrc)
export PATH="$HOME/.local/bin:$PATH"
```
### 4. Verify Installation
```bash
oai
```
On first run, you will be prompted to enter your OpenRouter API key.
## Usage ## Usage
Run the app and interact via commands: ### Starting the Application
```bash ```bash
python oai_chat.py oai
``` ```
Example session: ### Basic Commands
``` ```
Welcome to oAI! /help Show all available commands
You> /model gpt /model Select an AI model
(Shows table of GPT models) /config api Set OpenRouter API key
Enter model number: 1 exit Quit the application
Selected: GPT-4o (openai/gpt-4o) ```
### Configuration
All configuration is stored in `~/.config/oai/`:
- `oai_config.db` - SQLite database for settings and conversations
- `oai.log` - Application log file
- `history.txt` - Command history
### Common Workflows
**Select a Model:**
```
/model
```
**Start Chatting:**
```
You> Hello, how are you? You> Hello, how are you?
Streaming response... (Press Ctrl+C to cancel)
Hello! I'm doing great...
``` ```
For full commands, use `/help` in the app. **Attach Files:**
```
You> Debug this code @/path/to/script.py
You> Analyze this image @/path/to/image.png
```
## Screenshot **Save Conversation:**
```
/save my_conversation
```
[<img src="https://gitlab.pm/rune/oai/raw/branch/main/images/screenshot_01.png">](https://gitlab.pm/rune/oai/src/branch/main/README.md) **Export to File:**
```
/export md notes.md
/export json backup.json
/export html report.html
```
**View Session Stats:**
```
/stats
/credits
```
## Command Reference
Use `/help` within the application for a complete command reference organized by category:
- Session Commands
- Model Commands
- Configuration
- Token & System
- Conversation Management
- Monitoring & Stats
- File Attachments
## Configuration Options
- API Key: `/config api`
- Base URL: `/config url`
- Streaming: `/config stream on|off`
- Default Model: `/config model`
- Cost Warning: `/config costwarning <amount>`
- Max Token Limit: `/config maxtoken <value>`
## File Support
**Supported Code Extensions:**
.py, .js, .ts, .cs, .java, .c, .cpp, .h, .hpp, .rb, .ruby, .php, .swift, .kt, .kts, .go, .sh, .bat, .ps1, .R, .scala, .pl, .lua, .dart, .elm, .xml, .json, .yaml, .yml, .md, .txt
**Image Support:**
Any image format with proper MIME type (PNG, JPEG, GIF, etc.)
## Data Storage
- Configuration: `~/.config/oai/oai_config.db`
- Logs: `~/.config/oai/oai.log`
- History: `~/.config/oai/history.txt`
## License ## License
This project is licensed under the MIT License - see the [MIT License](https://opensource.org/licenses/MIT). MIT License
Author: Rune Olsen Copyright (c) 2024 Rune Olsen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Full license: https://opensource.org/licenses/MIT
## Author
**Rune Olsen**
Blog: https://blog.rune.pm
## Version
1.0
## Support
For issues, questions, or contributions, visit https://iurl.no/oai

Binary file not shown.

Before

Width:  |  Height:  |  Size: 297 KiB

After

Width:  |  Height:  |  Size: 557 KiB

969
oai.py

File diff suppressed because it is too large Load Diff