Metadata-Version: 2.4
Name: neiroweb
Version: 1.0.4
Summary: Python CLI Package made for AI Access
Home-page: https://github.com/CyberPlugger/neiroweb
Author: Andrew Sergeevich
Author-email: jumpki11@hotmail.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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 :: Libraries :: Python Modules
Requires-Python: >=3.7
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

# Neiroweb

Neiroweb is a Python AI CLI + GUI tool powered by Pollinations AI.

It allows you to interact with AI using:
- Terminal commands
- Interactive chat mode
- Graphical Tkinter chat interface

---

## 🚀 Installation

Install via pip:

```bash
pip install neiroweb
```

---

## 💻 CLI Usage

Show help:

```bash
neiroweb
```

Ask AI:

```bash
neiroweb ask "Hello!"
```

Start terminal chat:

```bash
neiroweb chat
```

Start graphical chat:

```bash
neiroweb graphical_chat
```

---

## 🧠 History System

Show history:

```bash
neiroweb history
```

Reset history:

```bash
neiroweb history --reset
```

Set history manually:

```bash
neiroweb history --set "['hello']"
```

---

## 🖥 Graphical Chat

To start the graphical AI chat interface:

```bash
neiroweb graphical_chat
```

### Python usage

```python
from neiroweb.interactive import GraphicChat

app = GraphicChat()
app.run()
```

---

## ⚙️ API

This project uses:

```
https://text.pollinations.ai
```

---

## 📁 Project Structure

```text
neiroweb/
├── __init__.py
├── __main__.py
├── cli.py
├── constants.py
├── interactive.py
├── __version__.py
```

---

## 🔧 Requirements

- Python 3.8+
- requests
- tkinter (built-in)

---

## 👤 Author

Andrey Sergeevich Cherepennikov  
Aliases:
- vito
- CyberPlugger
- jumpkill

Age: 11

---

## 📌 Run as module

```bash
python -m neiroweb
```

---

## 🔮 Future ideas

- Streaming responses
- Plugin system
- Voice input/output
- Multi-session memory
- EXE build via PyInstaller
