Loading...
Loading...
VexNode gives you instant access to high-performance GPUs at a fraction of the cost of traditional cloud providers. Follow these steps to launch your first compute job in minutes.
Install the VexNode Python SDK from PyPI:
pip install vexnodeSign up at dashboard.vexnode.ai and generate an API key from the API Keys page. Store it securely — you'll need it to authenticate all requests.
Create and submit a compute job with just a few lines of Python:
import vexnode
client = vexnode.Client(api_key="your-api-key")
job = client.compute.create(
model="meta-llama/Llama-3-70B",
gpu_type="A100-80GB",
input={
"prompt": "Explain quantum computing in simple terms",
"max_tokens": 512,
"temperature": 0.7,
},
)
print(f"Job ID: {job.id}")
print(f"Status: {job.status}")
print(f"Result: {job.output}")