Metadata-Version: 2.4
Name: zorix
Version: 0.1.2
Summary: Official Zorix Python SDK
Author-email: Zorix <admin@zorix.it>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0

# Zorix

Official Python SDK for Zorix.

## Install

pip install zorix

## Generate local token

zorix generate-token

This creates:

zorix_env_do_not_for_other.env

## Set API token manually

zorix set-token zrx_your_token_here

## Chat

zorix chat "Ciao"

## Python

from zorix import Zorix

client = Zorix()
print(client.chat("Ciao"))
