Skip to main content

Installation

Install the ARIS SDK using pip:
pip install aris-sdk

Prerequisities

Before you begin, ensure you have:
  • Python 3.8 or higher installed.
  • An ARIS API Key (you can request one from the Registry Dashboard).

Your First Request

Create a file named main.py and add the following code:
from aris.client import Aris

# Initialize the client
client = Aris(api_key="sk-aris-your-key")

# Send a generation request
response = client.generate(
    prompt="Explain the concept of decentralized AI in one sentence."
)

print(response)
Run the script:
python main.py
You should see a JSON response containing the generated text, usage statistics, and node information.

Next Steps