Metadata-Version: 2.1
Name: qexec
Version: 0.1.4
Summary: A package for executing commands through AI using qexec
Home-page: https://github.com/yourusername/qexec-ai
Author: Kiko
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: cryptography

# qexec-ai

A Python package for executing commands through AI using qexec.

## Installation

```bash
pip install qexec-ai
```

## Usage

```python
from qexec_ai import configure, register_exec, call_llm

# Configure the AI
configure(
    model="your-model",
    api_key="your-api-key"
)

# Register a command
def my_function():
    print("Function executed!")

register_exec("my-command", my_function, description="Execute my function", type="button")

# Use the AI
reply = call_llm("Please execute my command")
parse_and_execute(reply)
```

## Features

- AI-powered command execution
- Support for button, switch, and range type commands
- Memory management for conversation history
- Secure encryption for stored data
