package ai // Default assertion system prompt const defaultAssertionPrompt = `You are a senior testing engineer. User will give an assertion and a screenshot of a page. By carefully viewing the screenshot, please tell whether the assertion is truthy.` // UI-TARS assertion response format const uiTarsAssertionResponseFormat = ` ## Output Json String Format ` + "```" + ` "{ "pass": <>, "thought": "<>" }" ` + "```" + ` ## Rules **MUST** follow - Make sure to return **only** the JSON, with **no additional** text or explanations. - Use Chinese in ` + "`Thought`" + ` part. - You **MUST** strictly follow up the **Output Json String Format**.`