Developer Resources
Build on R3MES
Everything you need to integrate decentralized AI into your applications. SDKs, APIs, and comprehensive documentation.
Quick Start
Get started in under 5 minutes
Install the SDK
$ pip install r3mes-sdk
Code Examples
See how easy it is to get started
from r3mes import Client
# Initialize client
client = Client(
api_key="your-api-key",
network="mainnet"
)
# Chat with AI
response = client.chat.create(
model="r3mes-1",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.content)