Lybic Docs

Parse LLM Output (Deprecated)

Deprecated, use parseModelTextOutput instead

POST
/api/computer-use/parse

Deprecated, use parseModelTextOutput instead

Request Body

application/json

model*string

The model to parse the input for

Value in"ui-tars" | "seed" | "oai-compute-use"
textContent*string

The text content to parse

Response Body

application/json

curl -X POST "https://loading/api/computer-use/parse" \  -H "Content-Type: application/json" \  -d '{    "model": "ui-tars",    "textContent": "string"  }'
{
  "actions": [
    {
      "callId": "string",
      "type": "mouse:click",
      "x": {
        "type": "px",
        "value": 0
      },
      "y": {
        "type": "px",
        "value": 0
      },
      "button": 0,
      "holdKey": "string",
      "relative": true
    }
  ],
  "unknown": "string",
  "memory": "string",
  "thoughts": "string"
}