İçeriğe geç

Robotics

Gemini Robotics modelleri fiziksel veya simüle robot ajanları için komut üretir. /v1/robotics/sessions endpoint’i üzerinden oturum açılır.

Terminal window
curl https://llmtr.com/v1/robotics/sessions \
-H "Authorization: Bearer sk_your_key" \
-H "Content-Type: application/json" \
-d '{
"model": "google/gemini-robotics-er-1.5-preview",
"input": {
"goal": "Pick up the red block and place it in the tray."
},
"max_budget_usd": 1.00
}'
{
"id": "robsess_xxx",
"status": "succeeded",
"actions": [
{ "type": "move_to", "target": [0.2, 0.3, 0.1] },
{ "type": "grip" },
{ "type": "move_to", "target": [0.5, 0.5, 0.2] },
{ "type": "release" }
]
}

Input objesi şu alanları kabul eder:

  • goal — doğal dilde hedef tanımı
  • scene — opsiyonel sahne açıklaması veya görsel file_id
  • constraints — güvenlik veya hareket kısıtları

Model kartında gösterilen native unit (genelde token + action sayısı) üzerinden faturalanır.