Metadata-Version: 2.1
Name: qwen3-coder-agent
Version: 0.1.1
Summary: A terminal-based agent for interacting with Qwen3-Coder models
Home-page: https://github.com/yourusername/qwen3-coder-agent
Author: Your Name
Author-email: your.email@example.com
Project-URL: Bug Reports, https://github.com/yourusername/qwen3-coder-agent/issues
Project-URL: Source, https://github.com/yourusername/qwen3-coder-agent
Project-URL: Documentation, https://github.com/yourusername/qwen3-coder-agent#readme
Keywords: qwen3 coder ai assistant terminal cli code generation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Terminals
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: requests>=2.31.0
Requires-Dist: tiktoken>=0.4.0
Requires-Dist: pygments>=2.15.1
Requires-Dist: colorama>=0.4.6
Requires-Dist: prompt-toolkit>=3.0.38
Requires-Dist: tenacity>=8.2.2
Requires-Dist: pytest>=7.3.1
Requires-Dist: pytest-cov>=4.0.0
Requires-Dist: mypy>=1.3.0
Requires-Dist: black>=23.3.0
Requires-Dist: isort>=5.12.0
Requires-Dist: flake8>=6.0.0
Requires-Dist: pycodestyle>=2.12.0
Provides-Extra: dev
Requires-Dist: pytest>=7.3.1; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: mypy>=1.3.0; extra == "dev"
Requires-Dist: black>=23.3.0; extra == "dev"
Requires-Dist: isort>=5.12.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"

# Qwen3-Coder Terminal Agent

[![PyPI version](https://badge.fury.io/py/qwen3-coder-agent.svg)](https://pypi.org/project/qwen3-coder-agent/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

A powerful terminal interface for interacting with the Qwen3-Coder model, featuring secure API key management, hybrid token counting, and intelligent rate limiting.

## Features

- **Hybrid Token Counting**: Combines local estimation with API validation for accurate token counting
- **Secure API Key Management**: Environment-based configuration with secure storage
- **Adaptive Rate Limiting**: Intelligent handling of rate limits with predictive throttling
- **Context Management**: Dynamic windowing for large conversations
- **Terminal UX**: Clean interface with real-time token usage
- **Session Persistence**: Save and load conversation history

## Installation

### Option 1: Install from PyPI (recommended)

```bash
pip install qwen3-coder-agent
```

### Option 2: Install from source

1. Clone the repository:
   ```bash
   git clone https://github.com/qaaph-zyld/qwen3-coder_cli.git
   cd qwen3-coder_cli
   ```

2. Create and activate a virtual environment (recommended):
   ```bash
   python -m venv venv
   # On Windows:
   venv\Scripts\activate
   # On macOS/Linux:
   source venv/bin/activate
   ```

3. Install the package in development mode:
   ```bash
   pip install -e .
   ```

### Configuration

Create a `.env` file in your project directory with your API configuration:

```env
QWEN_API_KEY=your_api_key_here
QWEN_API_BASE=https://api.qwen.com/v1  # Default value, update if different
MAX_CONTEXT_TOKENS=4000  # Adjust based on your model's context window
```

## Security

### API Key Management
- Never commit your API key to version control
- The `.env` file is included in `.gitignore` to prevent accidental commits
- For production use, consider using a secure secret management solution

### Token Security
- API keys and tokens are only sent to the Qwen3 API endpoint
- All API communications are encrypted with HTTPS
- Token usage is tracked locally but never stored with the conversation history

### Best Practices
1. Rotate your API keys regularly
2. Use the principle of least privilege when generating API keys
3. Monitor your API usage for any unexpected activity

## Contributing

We welcome contributions to the Qwen3-Coder Terminal Agent! Here's how you can help:

### Reporting Issues
- Check existing issues before creating a new one
- Provide detailed reproduction steps
- Include any relevant error messages or logs

### Development Setup
1. Fork the repository
2. Create a feature branch: `git checkout -b feature/your-feature-name`
3. Make your changes and write tests
4. Run the test suite: `pytest`
5. Format your code: `black .`
6. Submit a pull request

### Code Style
- Follow [PEP 8](https://www.python.org/dev/peps/pep-0008/) guidelines
- Use type hints for better code clarity
- Include docstrings for all public functions and classes

### Testing
- Write tests for new features and bug fixes
- Ensure all tests pass before submitting a PR
- Update documentation when adding new features

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Usage

Start the terminal interface:
```bash
python -m qwen3_coder.cli
```

### Available Commands

#### Chat Commands
- Just type your message and press Enter to chat with Qwen3-Coder
- Multi-line input is supported (press Shift+Enter for new lines, Enter to send)

#### System Commands
- `/help` or `?` - Show help message with available commands
- `/exit` or `/q` - Exit the application
- `/clear` - Clear the current conversation
- `/tokens` or `/t` - Show token usage statistics

#### Session Management
- `/save [name]` or `/s [name]` - Save current conversation
- `/load <id>` or `/l <id>` - Load a saved session
- `/sessions` or `/ls` - List all saved sessions

## Configuration

The following environment variables can be set in the `.env` file:

- `QWEN_API_KEY`: Your Qwen API key (required)
- `QWEN_API_BASE`: Base URL for the Qwen API (default: `https://api.qwen.com/v1`)
- `MAX_CONTEXT_TOKENS`: Maximum number of tokens to keep in context (default: 4000)

## Examples

### Starting a new conversation
```
qwen3> Hello! How can I help you today?
```

### Saving a session
```
qwen3> /save my_first_session
Session saved as: my_first_session
```

### Loading a session
```
qwen3> /load my_first_session
Session loaded: my_first_session
```

## Development

### Running Tests
```bash
pytest tests/
```

### Code Style
This project uses `black` for code formatting and `flake8` for linting.

```bash
black .
flake8
```

## License

MIT License - see the [LICENSE](LICENSE) file for details.

## Contributing

Contributions are welcome! Please open an issue or submit a pull request.
- `/save [name]` - Save current session
- `/load <name>` - Load a saved session
- `/model [name]` - Get or set the current model
- `/debug` - Toggle debug mode
- `/new` - Start a new session
- `/system <msg>` - Add a system message
- `/settings` - Show current settings
- `/exit` or `/quit` - Exit the program

## Configuration

Edit the `.env` file to customize settings:

```env
# API Configuration
QWEN_API_KEY=your_api_key_here
API_BASE_URL=https://api.qwen.ai/v1/chat/completions

# Rate Limiting
MAX_RETRIES=3
INITIAL_RETRY_DELAY=1
MAX_RETRY_DELAY=10

# Token Management
MAX_TOKENS=4096
MAX_CONTEXT_TOKENS=32000
WARNING_THRESHOLD=0.8
```

## Security

- API keys are never logged or stored in plaintext
- Environment variables are used for configuration
- Secure credential storage options available via keyring
- All API calls use HTTPS

## Development

1. Install development dependencies:
   ```bash
   pip install -r requirements-dev.txt
   ```

2. Run tests:
   ```bash
   pytest
   ```

3. Format code:
   ```bash
   black .
   isort .
   ```

## License

MIT

## Contributing

Contributions are welcome! Please open an issue or submit a pull request.

## Acknowledgements

- [Qwen Team](https://github.com/Qwen) for the Qwen3-Coder model
- [OpenAI](https://openai.com) for the tiktoken library
- [Python Prompt Toolkit](https://python-prompt-toolkit.readthedocs.io/) for the terminal interface
