Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contexttimer
ipython
pyyaml>=6
pandas
gradio>=5
gradio>=5.5 # issue with DataFrame scrolling before 5.5
gitpython # for the reproducibility script
requests
matplotlib
Expand Down
2 changes: 1 addition & 1 deletion src/agentlab/agents/dynamic_prompting.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def shrink(self):
def _prompt(self) -> str:
return f"""
# Observation of current step:
{self.tabs}{self.html.prompt}{self.ax_tree.prompt}{self.focused_element.prompt}{self.error.prompt}
{self.tabs.prompt}{self.html.prompt}{self.ax_tree.prompt}{self.focused_element.prompt}{self.error.prompt}

"""

Expand Down
1 change: 1 addition & 0 deletions src/agentlab/experiments/study.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ def get_report(self, ignore_cache=False, ignore_stale=False):
self.dir, ignore_cache=ignore_cache, ignore_stale=ignore_stale
)

@staticmethod
def load(dir: Path) -> "Study":
dir = Path(dir)
study_path = dir / "study.pkl.gz"
Expand Down