Lybic Docs

Parse Mobile Use Model Text Output

Parses the output text of mobile use model and returns the parsed actions.

POST
/api/mobile-use/parse/{type}

Path Parameters

typestring

The type of the prompt to parse the input for

Value in"ui-tars" | "seed" | "glm-4.1v" | "glm-4.5v" | "qwen-2.5-vl" | "pyautogui"
textContentstring

The text content to parse

Response Body

{
  "actions": [
    {
      "callId": "string",
      "type": "screenshot"
    }
  ],
  "unknown": "string",
  "memory": "string",
  "thoughts": "string"
}