diff --git a/README.md b/README.md
index 80cec115..682f56ba 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,6 @@
-
-
[](https://pypi.org/project/agentlab/)
@@ -17,10 +15,17 @@
[🛠️ Setup](#%EF%B8%8F-setup-agentlab) |
[🤖 Assistant](#-ui-assistant) |
[🚀 Launch Experiments](#-launch-experiments) |
-[🔍 Analyse Results](#-analyse-results) |
+[🔍 Analyse Results](#-analyse-results) |
+
+[🏆 Leaderboard](#-leaderboard) |
[🤖 Build Your Agent](#-implement-a-new-agent) |
[↻ Reproducibility](#-reproducibility)
+
+

+
+
+Demo solving tasks:
https://github.com/ServiceNow/BrowserGym/assets/26232819/e0bfc788-cc8e-44f1-b8c3-0d1114108b85
@@ -32,10 +37,10 @@ AgentLab is a framework for developing and evaluating agents on a variety of
AgentLab Features:
* Easy large scale parallel [agent experiments](#-launch-experiments) using [ray](https://www.ray.io/)
* Building blocks for making agents over BrowserGym
-* Unified LLM API for OpenRouter, OpenAI, Azure, or self hosted using TGI.
-* Prefered way for running benchmarks like WebArena
+* Unified LLM API for OpenRouter, OpenAI, Azure, or self-hosted using TGI.
+* Preferred way for running benchmarks like WebArena
* Various [reproducibility features](#reproducibility-features)
-* Unified LeaderBoard (soon)
+* Unified [LeaderBoard](https://huggingface.co/spaces/ServiceNow/browsergym-leaderboard)
## 🎯 Supported Benchmarks
@@ -59,12 +64,12 @@ AgentLab Features:
pip install agentlab
```
-If not done already, install playwright:
+If not done already, install Playwright:
```bash
playwright install
```
-Make sure to prepare the required benchmark according to instructions provided in the [setup
+Make sure to prepare the required benchmark according to the instructions provided in the [setup
column](#-supported-benchmarks).
```bash
@@ -174,7 +179,7 @@ experience, consider using benchmarks like WorkArena instead.
### Loading Results
-The class [`ExpResult`](https://github.com/ServiceNow/BrowserGym/blob/da26a5849d99d9a3169d7b1fde79f909c55c9ba7/browsergym/experiments/src/browsergym/experiments/loop.py#L595) provides a lazy loader for all the information of a specific experiment. You can use [`yield_all_exp_results`](https://github.com/ServiceNow/BrowserGym/blob/da26a5849d99d9a3169d7b1fde79f909c55c9ba7/browsergym/experiments/src/browsergym/experiments/loop.py#L872) to recursivley find all results in a directory. Finally [`load_result_df`](https://github.com/ServiceNow/AgentLab/blob/be1998c5fad5bda47ba50497ec3899aae03e85ec/src/agentlab/analyze/inspect_results.py#L119C5-L119C19) gathers all the summary information in a single dataframe. See [`inspect_results.ipynb`](src/agentlab/analyze/inspect_results.ipynb) for example usage.
+The class [`ExpResult`](https://github.com/ServiceNow/BrowserGym/blob/da26a5849d99d9a3169d7b1fde79f909c55c9ba7/browsergym/experiments/src/browsergym/experiments/loop.py#L595) provides a lazy loader for all the information of a specific experiment. You can use [`yield_all_exp_results`](https://github.com/ServiceNow/BrowserGym/blob/da26a5849d99d9a3169d7b1fde79f909c55c9ba7/browsergym/experiments/src/browsergym/experiments/loop.py#L872) to recursively find all results in a directory. Finally [`load_result_df`](https://github.com/ServiceNow/AgentLab/blob/be1998c5fad5bda47ba50497ec3899aae03e85ec/src/agentlab/analyze/inspect_results.py#L119C5-L119C19) gathers all the summary information in a single dataframe. See [`inspect_results.ipynb`](src/agentlab/analyze/inspect_results.ipynb) for example usage.
```python
from agentlab.analyze import inspect_results
@@ -204,8 +209,14 @@ Once this is selected, you can see the trace of your agent on the given task. Cl
image to select a step and observe the action taken by the agent.
-**⚠️ Note**: Gradio is still in developement and unexpected behavior have been frequently noticed. Version 5.5 seems to work properly so far. If you're not sure that the proper information is displaying, refresh the page and select your experiment again.
+**⚠️ Note**: Gradio is still developing, and unexpected behavior has been frequently noticed. Version 5.5 seems to work properly so far. If you're not sure that the proper information is displaying, refresh the page and select your experiment again.
+
+
+## 🏆 Leaderboard
+
+Official unified [leaderboard](https://huggingface.co/spaces/ServiceNow/browsergym-leaderboard) across all benchmarks.
+Experiments are on their way for more reference points using GenericAgent. We are also working on code to automatically push a study to the leaderboard.
## 🤖 Implement a new Agent
@@ -222,32 +233,32 @@ Several factors can influence reproducibility of results in the context of evalu
dynamic benchmarks.
### Factors affecting reproducibility
-* **Software version**: Different version of Playwright or any package in the software stack could
+* **Software version**: Different versions of Playwright or any package in the software stack could
influence the behavior of the benchmark or the agent.
-* **API based LLMs silently changing**: Even for a fixed version, an LLM may be updated e.g. to
- incorporate latest web knowledge.
+* **API-based LLMs silently changing**: Even for a fixed version, an LLM may be updated e.g. to
+ incorporate the latest web knowledge.
* **Live websites**:
* WorkArena: The demo instance is mostly fixed in time to a specific version but ServiceNow
- sometime push minor modifications.
+ sometimes pushes minor modifications.
* AssistantBench and GAIA: These rely on the agent navigating the open web. The experience may
change depending on which country or region, some websites might be in different languages by
default.
-* **Stochastic Agents**: Setting temperature of the LLM to 0 can reduce most stochasticity.
-* **Non deterministic tasks**: For a fixed seed, the changes should be minimal
+* **Stochastic Agents**: Setting the temperature of the LLM to 0 can reduce most stochasticity.
+* **Non-deterministic tasks**: For a fixed seed, the changes should be minimal
### Reproducibility Features
* `Study` contains a dict of information about reproducibility, including benchmark version, package
version and commit hash
* The `Study` class allows automatic upload of your results to
[`reproducibility_journal.csv`](reproducibility_journal.csv). This makes it easier to populate a
- large amount of reference points.
-* **Reproduced results in the leaderboard**. For agents that are repdocudibile, we encourage users
+ large amount of reference points. For this feature, you need to `git clone` the repository and install via `pip install -e .`.
+* **Reproduced results in the leaderboard**. For agents that are reprocudibile, we encourage users
to try to reproduce the results and upload them to the leaderboard. There is a special column
containing information about all reproduced results of an agent on a benchmark.
* **ReproducibilityAgent**: [You can run this agent](src/agentlab/agents/generic_agent/reproducibility_agent.py) on an existing study and it will try to re-run
- the same actions on the same task seeds. A vsiual diff of the two prompts will be displayed in the
+ the same actions on the same task seeds. A visual diff of the two prompts will be displayed in the
AgentInfo HTML tab of AgentXray. You will be able to inspect on some tasks what kind of changes
- between to two executions. **Note**: this is a beta feature and will need some adaptation for your
+ between the two executions. **Note**: this is a beta feature and will need some adaptation for your
own agent.