orgo_get_computer
Retrieve comprehensive computer details including access URL, specifications, and status for direct browser viewing and management.
Instructions
Get full details for a computer including access URL.
Returns comprehensive information about a computer including its
access URL for direct browser viewing.
Args:
params (ComputerIdInput): Input containing:
- computer_id (str): Computer ID
Returns:
str: JSON with computer details:
{
"id": str,
"name": str,
"project_name": str,
"os": str,
"ram": int,
"cpu": int,
"status": str,
"url": str,
"created_at": str
}
Examples:
- "Get details for computer abc123" -> params with computer_id="abc123"
- "What's the URL for my computer?" -> get_computer then access url field
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |