Overview
Theget_available_gpus action retrieves all available GPU machines on the Hyperbolic platform, including pricing, specifications, and availability information.
Function Signature
Input Schema
This action takes no input parameters.Response
Returns a formatted string with details about available GPU options.A formatted string containing:
- Cluster name
- Node ID
- GPU model
- Available GPUs (available/total)
- Price per GPU per hour in USD
API Endpoint
Example Response
Example Usage
Important Notes
- Authorization key (
HYPERBOLIC_API_KEY) is required for this operation - GPU prices are returned in dollars per hour (converted from cents)
- Only non-reserved instances with available GPUs are displayed
- If no GPU instances are available, returns: “No available GPU instances found.”
- Use the cluster_name and node_name from this response when calling
rent_compute
Response Details
The function processes the marketplace API response and filters for:- Non-reserved instances (
reserved: false) - Instances with available GPUs (
gpus_available > 0) - Instances with valid hardware specifications
- Cluster: Geographic or logical cluster identifier
- Node ID: Unique node identifier for use in
rent_compute - GPU Model: Hardware model (e.g., NVIDIA H100, A100, etc.)
- Available GPUs: Number of GPUs available out of total
- Price: Cost per GPU per hour in USD
Related Actions
- Rent Compute - Rent GPUs from available nodes
- Get GPU Status - Check status of your rented instances