Metadata-Version: 2.4
Name: qelrix
Version: 0.0.1
Summary: A simple library for interacting with Gemini API
Home-page: https://github.com/yourusername/qelrix
Author: Your Name
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: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Qelrix

Qelrix is a simple Python library for interacting with the Gemini API.

## Installation

```bash
pip install qelrix
```

## Usage

```python
import qelrix

qelrix.apikey("YOUR_API_KEY")
qelrix.model("YOUR_GEMINI_ENDPOINT")
qelrix.hoi("Hello, how are you?")
print(qelrix.traloi())
```

## API

### `qelrix.apikey(key: str) -> str`
Sets the API key.

### `qelrix.model(url: str) -> str`
Sets the full Gemini API endpoint URL.

### `qelrix.hoi(text: str)`
Sends a question to the API and stores the response.

### `qelrix.traloi() -> str`
Retrieves the answer from the last `hoi()` call.


