Metadata-Version: 2.4
Name: zyra-network
Version: 2.1.13
Summary: A powerful, self-organizing decentralized AI network client.
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: PyYAML>=6.0
Requires-Dist: psutil>=5.9.0
Requires-Dist: numpy>=1.24.0
Requires-Dist: httpx
Requires-Dist: openai
Requires-Dist: pyautogui
Requires-Dist: duckduckgo-search
Requires-Dist: web3>=6.0.0
Requires-Dist: python-dotenv
Requires-Dist: prompt_toolkit>=3.0.0
Requires-Dist: requests
Requires-Dist: websockets
Provides-Extra: desktop
Requires-Dist: PySide6>=6.5.0; extra == "desktop"
Requires-Dist: torch>=2.0.0; extra == "desktop"
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pyinstaller; extra == "dev"

# MY-AI

A locally built, trained, and executed Artificial Intelligence desktop application for Windows.

## Tujuan Project
Proyek ini dibuat untuk membangun neural network Transformer dan seluruh sistem pendukung AI dari awal tanpa bergantung pada layanan cloud, API eksternal, atau model pre-trained yang sudah ada (seperti OpenAI, Claude, Llama, dll). 
Tujuan akhirnya adalah memiliki AI Assistant pribadi yang berjalan sepenuhnya lokal di komputer pengguna.

## Requirements
- Windows 64-bit
- Python 3.10+
- Hardware minimal: CPU + RAM (Rekomendasi: NVIDIA GPU dengan CUDA support)

## Setup Virtual Environment
```powershell
python -m venv venv
.\venv\Scripts\activate
```

## Install Dependencies
Project ini menggunakan `pyproject.toml` untuk manajemen dependensi minimal.
```powershell
pip install -e .[dev]
```
Dependensi utama:
- PySide6 (Desktop GUI)
- PyYAML (Configuration)
- PyTorch (Hardware detection, Tensor/Autograd)

## Menjalankan Aplikasi
```powershell
python run.py
```

## Menjalankan Test
```powershell
pytest tests/
```
