HomeFeaturesSecurityPricingDocsContact

1. Install SDK

Install the AgentNode SDK for your platform.

terminal
# Python
pip install agentnode

# Node.js
npm install @agentnode/sdk

2. Configure Device

Initialize with your device credentials.

config.py
from agentnode import Gateway

gateway = Gateway(
device_id="device-001",
api_key="your-api-key"
)

3. Send Request

Route requests to AI models through the edge gateway.

example.py
response = gateway.inference(
model="gpt-4",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.text)