4cd2d4af2b
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Waiting to run
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
121 lines
3.7 KiB
Python
121 lines
3.7 KiB
Python
import asyncio
|
||
import os
|
||
import sys
|
||
|
||
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
||
|
||
from dotenv import load_dotenv
|
||
|
||
load_dotenv()
|
||
|
||
from browser_use import Agent, ChatOpenAI
|
||
|
||
task = """
|
||
### Prompt for Shopping Agent – Migros Online Grocery Order
|
||
|
||
**Objective:**
|
||
Visit [Migros Online](https://www.migros.ch/en), search for the required grocery items, add them to the cart, select an appropriate delivery window, and complete the checkout process using TWINT.
|
||
|
||
**Important:**
|
||
- Make sure that you don't buy more than it's needed for each article.
|
||
- After your search, if you click the "+" button, it adds the item to the basket.
|
||
- if you open the basket sidewindow menu, you can close it by clicking the X button on the top right. This will help you navigate easier.
|
||
---
|
||
|
||
### Step 1: Navigate to the Website
|
||
- Open [Migros Online](https://www.migros.ch/en).
|
||
- You should be logged in as Nikolaos Kaliorakis
|
||
|
||
---
|
||
|
||
### Step 2: Add Items to the Basket
|
||
|
||
#### Shopping List:
|
||
|
||
**Meat & Dairy:**
|
||
- Beef Minced meat (1 kg)
|
||
- Gruyère cheese (grated preferably)
|
||
- 2 liters full-fat milk
|
||
- Butter (cheapest available)
|
||
|
||
**Vegetables:**
|
||
- Carrots (1kg pack)
|
||
- Celery
|
||
- Leeks (1 piece)
|
||
- 1 kg potatoes
|
||
|
||
At this stage, check the basket on the top right (indicates the price) and check if you bought the right items.
|
||
|
||
**Fruits:**
|
||
- 2 lemons
|
||
- Oranges (for snacking)
|
||
|
||
**Pantry Items:**
|
||
- Lasagna sheets
|
||
- Tahini
|
||
- Tomato paste (below CHF2)
|
||
- Black pepper refill (not with the mill)
|
||
- 2x 1L Oatly Barista(oat milk)
|
||
- 1 pack of eggs (10 egg package)
|
||
|
||
#### Ingredients I already have (DO NOT purchase):
|
||
- Olive oil, garlic, canned tomatoes, dried oregano, bay leaves, salt, chili flakes, flour, nutmeg, cumin.
|
||
|
||
---
|
||
|
||
### Step 3: Handling Unavailable Items
|
||
- If an item is **out of stock**, find the best alternative.
|
||
- Use the following recipe contexts to choose substitutions:
|
||
- **Pasta Bolognese & Lasagna:** Minced meat, tomato paste, lasagna sheets, milk (for béchamel), Gruyère cheese.
|
||
- **Hummus:** Tahini, chickpeas, lemon juice, olive oil.
|
||
- **Chickpea Curry Soup:** Chickpeas, leeks, curry, lemons.
|
||
- **Crispy Slow-Cooked Pork Belly with Vegetables:** Potatoes, butter.
|
||
- Example substitutions:
|
||
- If Gruyère cheese is unavailable, select another semi-hard cheese.
|
||
- If Tahini is unavailable, a sesame-based alternative may work.
|
||
|
||
---
|
||
|
||
### Step 4: Adjusting for Minimum Order Requirement
|
||
- If the total order **is below CHF 99**, add **a liquid soap refill** to reach the minimum. If it;s still you can buy some bread, dark chockolate.
|
||
- At this step, check if you have bought MORE items than needed. If the price is more then CHF200, you MUST remove items.
|
||
- If an item is not available, choose an alternative.
|
||
- if an age verification is needed, remove alcoholic products, we haven't verified yet.
|
||
|
||
---
|
||
|
||
### Step 5: Select Delivery Window
|
||
- Choose a **delivery window within the current week**. It's ok to pay up to CHF2 for the window selection.
|
||
- Preferably select a slot within the workweek.
|
||
|
||
---
|
||
|
||
### Step 6: Checkout
|
||
- Proceed to checkout.
|
||
- Select **TWINT** as the payment method.
|
||
- Check out.
|
||
-
|
||
- if it's needed the username is: nikoskalio.dev@gmail.com
|
||
- and the password is : TheCircuit.Migros.dev!
|
||
---
|
||
|
||
### Step 7: Confirm Order & Output Summary
|
||
- Once the order is placed, output a summary including:
|
||
- **Final list of items purchased** (including any substitutions).
|
||
- **Total cost**.
|
||
- **Chosen delivery time**.
|
||
|
||
**Important:** Ensure efficiency and accuracy throughout the process."""
|
||
|
||
|
||
agent = Agent(task=task, llm=ChatOpenAI(model='gpt-4.1-mini'))
|
||
|
||
|
||
async def main():
|
||
await agent.run()
|
||
input('Press Enter to close the browser...')
|
||
|
||
|
||
if __name__ == '__main__':
|
||
asyncio.run(main())
|