trace_synthesis/summary/361_prompt_debug.txt
yuyr a84d51a101 1. 增加r1生成综合策略代码和输出;
2. 增加tasks;
3. 增加analysis部分,对策略进行归纳分类,然后进行评测。
2025-04-17 17:40:15 +08:00

171 lines
6.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Instruction
- You are an expert in cleaning process data descriptions. Given a task, you are provided with a set of annotation description
data for a certain visual LLM related to human user operation videos. Plus, You are provided with full trace of playwright action,
whic includes action and url before and after the action.
- You need to analyze all the descriptive data and ultimately summarize a complete and reasonable user operation description that can accomplish the given task.
- For each strategy, give a clear list of the low level action sequence.
# Task
Show me the order statuses for order number 170 and 189.
# Annotation description
### Part 1: Navigating to "Cell Phones & Accessories"
#### Action:
- I hover over the "Electronics" menu item in the top navigation bar.
- I click on the "Cell Phones & Accessories" link that appears in the dropdown menu.
#### Page Changes:
- The webpage transitions to a new section dedicated to "Cell Phones & Accessories," displaying relevant products and categories related to cell phones and their accessories.
#### Possible Purpose:
- The likely intent is to explore products within the "Cell Phones & Accessories" category, possibly to browse or purchase items related to cell phones.
---
### Part 2: Accessing "My Account"
#### Action:
- I click on the "My Account" link located in the top right corner of the webpage.
#### Page Changes:
- The webpage navigates to the "My Account" dashboard, which includes sections such as "Account Information," "Address Book," and "Newsletters."
#### Possible Purpose:
- The purpose is to access personal account settings and information, which might be necessary for managing orders, updating personal details, or reviewing account-related options.
---
### Part 3: Viewing "My Orders"
#### Action:
- Within the "My Account" dashboard, I click on the "My Orders" link in the left sidebar menu.
#### Page Changes:
- The webpage updates to display the "My Orders" section, listing all previous orders with details such as Order #, Date, Order Total, Status, and Action options like "View Order" and "Reorder."
#### Possible Purpose:
- The intent is to review past orders, which could be for verification, reordering items, or checking the status of previous transactions.
---
### Part 4: Observing Order Details
#### Action:
- I scroll through the "My Orders" list and observe the details of each order, particularly focusing on the "Order Total" column.
#### Page Changes:
- No significant page changes occur; the focus remains on the "My Orders" section.
#### Possible Purpose:
- The purpose is to review the financial details of past orders, possibly to verify amounts, analyze spending, or prepare for budgeting purposes.
---
This description strictly adheres to the observable actions and page changes in the provided video segment, without incorporating any additional context or assumptions.
# Playwright action
[
{
"action_uid": "link_My Account",
"idx": 0,
"action_repr": "frame.clickget_by_role(\"link\", name=\"My Account\")",
"before": {
"url": "http://ec2-3-135-39-80.us-east-2.compute.amazonaws.com:7770/"
},
"after": {
"url": "http://ec2-3-135-39-80.us-east-2.compute.amazonaws.com:7770/"
}
},
{
"action_uid": "link_My Orders",
"idx": 1,
"action_repr": "frame.clickget_by_role(\"link\", name=\"My Orders\")",
"before": {
"url": "http://ec2-3-135-39-80.us-east-2.compute.amazonaws.com:7770/sales/order/history/"
},
"after": {
"url": "http://ec2-3-135-39-80.us-east-2.compute.amazonaws.com:7770/sales/order/history/"
}
}
]
# Output format
- 先总结整个任务的Objective然后按照Strategy-SubStrategy-action三级层次来给出整个过程
- 接着给出整个操作流程后的观察和有趣的发现最后严格按照json格式输出三级层次的过程描述。
- 最后的输出json应该是包在```{json}```之间最底层动作需要包含描述、对应的playwright动作指令顺序编号以及具体指令内容。
# Example
### Complete User Operation Description to Display Labeled Issues in kkroening/ffmpeg-python
**Objective:** Filter and display all issues labeled as "question" in the kkroening/ffmpeg-python repository.
---
#### **Strategy 1: Navigate to the Repository**
**Low-Level Action Sequence:**
1. **Search for the user "kkroening"**
- Click the global search bar (placeholder: "Search GitLab").
- Type "kkroening" and press `Enter`.
2. **Select the user from results**
- Click the "Users" tab in search results.
- Click on "Karl Kroening @kkroening" in the user list.
3. **Access the repository**
- Navigate to the "Personal projects" section.
- Click on the "ffmpeg-python" project.
---
#### **Strategy 2: Filter Issues by Label**
**Low-Level Action Sequence:**
1. **Open the Issues tab**
- Scroll to the left sidebar menu.
- Click the "Issues" tab (displaying the count, e.g., "Issues 402").
2. **Apply label filtering**
- Click the search/filter bar in the issues list.
- Select the "Label" dropdown from the filter options.
- Type or select "question" from the label dropdown.
- Click the search/apply button to confirm the filter.
---
#### **Final Oberservation**
The issues list will refresh to show only issues with the "question" label. The URL will reflect the filter:
`.../ffmpeg-python/-/issues/?label_name[]=question`.
---
### Key Observations from Playwright Trace
- The final URL after filtering:
`http://ec2-3-135-39-80.../ffmpeg-python/-/issues/?label_name%5B%5D=question`
confirms the "question" label filter is applied.
- Critical interactions include selecting the "Label" dropdown and explicitly choosing "question" to refine results.
### Final output
```json
[{
"strategy" : "Navigate to the Repository",
"substrategies": [
{
"substrategy": "Search for the user \"kkroening\"",
"actions" : [
{
"description": "Click the global search bar (placeholder: \"Search GitLab\"). ",
"playwright_idx" : 18,
"playwright_instruction" : "frame.pressget_by_placeholder(\"Search GitLab\")Enter"
}
]
},
{
"substrategy": "Select the user from results",
"actions" : [
]
}
]
},
{
"strategy" : "Filter Issues by Label",
"substrategies" : [
]
}]
```