# Prompting Tips The natural language parameter passed to Midscene will be part of the prompt sent to the AI model. There are certain techniques in prompt engineering that can help improve the understanding of user interfaces. ## The goal is to get a stable response from AI Since AI has the nature of heuristic, the purpose of prompt tuning should be to obtain stable responses from the AI model across runs. In most cases, to expect a consistent response from AI model by using a good prompt is entirely feasible. ## Use detailed descriptions and samples Detailed descriptions and examples are always welcome. For example: ❌ Don't ```log Search 'headphone' ``` ✅ Do ```log Click the search box (it should be along with a region switch, such as 'domestic' or 'international'), type 'headphone', and hit Enter. ``` ❌ Don't ```log Assert: food delivery service is in normal state ``` ✅ Do ```log Assert: There is a 'food delivery service' on page, and is in normal state ``` ### Use instant action interface if you are sure about what you want to do For example: `agent.ai('Click Login Button')` is the auto planning mode, Midscene will plan the steps and then execute them. It will cost more time and tokens. By using `agent.aiTap('Login Button')`, you can directly using the locating result from the AI model and perform the click action. It's faster and more accurate compared to the auto planning mode. For more details, please refer to [API](./API). ### Understand the reason why `.ai` is wrong **Understanding the report** By reviewing the report, you can see there are two main steps of each `.ai` call: 1. Planning 2. Locating First, you should find out whether the AI is wrong in the planning step or the locating step. When you see the steps are not as expected (more steps or less steps), it means the AI is wrong in the planning step. So you can try to give more details in the task flow. For example: ❌ Don't ```log Select "include" in the "range" dropdown menu ``` You can try: ✅ Do ```log Click the "range" dropdown menu, and select "include" ``` When you see the locating result is not as expected (wrong element or biased coordinates), try to give more details in the locate parameter. For example: ❌ Don't ```log Click the "Add" button ``` You can try: ✅ Do ```log Click the "Add" button on the top-right corner, it's on the right side of the "range" dropdown menu ``` **Other ways to improve** * Use a larger and stronger AI model * Use instant action interface like `agent.aiTap()` instead of `.ai` if you are sure about what you want to do ## One prompt should only do one thing Use `.ai` each time to do one task. Although Midscene has an auto-replanning strategy, it's still preferable to keep the prompt concise. Otherwise the LLM output will likely be messy. The token cost between a long prompt and a short prompt is almost the same. ❌ Don't ```log Click Login button, then click Sign up button, fill the form with 'test@test.com' in the email field, 'test' in the password field, and click Sign up button ``` ✅ Split the task into the following steps into multiple `.ai` calls ```log Click Login Button Click Sign up button Fill the form with 'test@test.com' in the email field Fill the form with 'test' in the password field Click Sign up button ``` ### LLMs can NOT tell the exact number like coords or hex-style color, give it some choices For example: ❌ Don't ```log string, hex value of text color ``` ❌ Don't ```log [number, number], the [x, y] coords of the main button ``` ✅ Do ```log string, color of text, one of blue / red / yellow / green / white / black / others ``` ## Use report file and playground tool to debug Open the report file, you will see the detailed information about the steps. If you want to rerun a prompt together with UI context from the report file, just launch a Playground server and click "Send to Playground". To launch the local Playground server: ``` npx --yes @midscene/web ``` ![Playground](/midescene-playground-entry.jpg) ## Infer or assert from the interface, not the DOM properties or browser status All the data sent to the LLM is in the form of screenshots and element coordinates. The DOM and the browser instance are almost invisible to the LLM. Therefore, ensure everything you expect is visible on the screen. ❌ Don't ```log The title has a `test-id-size` property ``` ❌ Don't ```log The browser has two active tabs ``` ❌ Don't ```log The request has finished. ``` ✅ Do ```log The title is blue ``` ## Cross-check the result using assertion LLM could behave incorrectly. A better practice is to check its result after running. For example, you can check the list content of the to-do app after inserting a record. ```typescript await ai('Enter "Learning AI the day after tomorrow" in the task box, then press Enter to create'); // check the result const taskList = await aiQuery('string[], tasks in the list'); expect(taskList.length).toBe(1); expect(taskList[0]).toBe('Learning AI the day after tomorrow'); ``` ## Non-English prompting is acceptable Since most AI models can understand many languages, feel free to write the prompt in any language you prefer. It usually works even if the prompt is in a language different from the page's language. ✅ Good ```log 点击顶部左侧导航栏中的“首页”链接 ```