orgo_create_computer
Create a virtual computer in a project with configurable OS, RAM, and CPU. The computer boots quickly and returns an ID for management.
Instructions
Create a new virtual computer in a project.
The computer boots in under 500ms and starts in 'running' status.
Returns the computer ID for use with action tools.
Args:
params (CreateComputerInput): Input containing:
- project_name (str): Project to create the computer in
- name (str): Display name for the computer
- os (Literal): 'linux' or 'windows' (default: linux)
- ram (Literal): RAM in GB - 1, 2, 4, 8, 16, 32, 64 (default: 2)
- cpu (Literal): CPU cores - 1, 2, 4, 8, 16 (default: 2)
Returns:
str: JSON with created computer details:
{
"id": str,
"name": str,
"status": "running",
"os": str,
"ram": int,
"cpu": int
}
Examples:
- "Create Linux computer with 4GB RAM" -> params with ram=4
- "Create Windows dev-box" -> params with os="windows", name="dev-box"
Error Handling:
- Returns "Error: Insufficient credits..." if account balance is low
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |