|
install: |
|
@echo "--- π Installing project dependencies ---" |
|
pip install -e ./browsergym/core -e ./browsergym/miniwob -e ./browsergym/webarena -e ./browsergym/visualwebarena/ -e ./browsergym/experiments -e ./browsergym/assistantbench -e ./browsergym/ |
|
playwright install chromium |
|
|
|
install-demo: |
|
@echo "--- π Installing demo dependencies ---" |
|
pip install -r demo_agent/requirements.txt |
|
playwright install chromium |
|
|
|
demo: |
|
@echo "--- π Running demo agent ---" |
|
(set -x && cd demo_agent && python run_demo.py) |
|
|
|
test-core: |
|
@echo "--- π§ͺ Running tests ---" |
|
pytest -n auto ./tests/core |
|
|