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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "agent-eval"
version = "0.1.33"
version = "0.1.34"
description = "Agent evaluation toolkit"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
3 changes: 2 additions & 1 deletion src/agenteval/leaderboard/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __str__(self):
}
configs.append(config_def)
yaml_section = yaml.dump({"configs": configs})
return f"---\n{yaml_section.strip()}\n---{self.text_content.lstrip()}"
return f"---\n{yaml_section.strip()}\n---\n{self.text_content.lstrip()}"
Copy link
Copy Markdown
Collaborator Author

@ca16 ca16 Aug 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Without this I got

No YAML front matter found in README.md

the next time I ran something that tried to do the readme check, after making my initial change to add a new config.


@staticmethod
def download_and_parse(repo_id: str) -> "Readme":
Expand Down Expand Up @@ -97,4 +97,5 @@ def upload(self, repo_id: str, comment: str):
path_in_repo="README.md",
repo_id=repo_id,
commit_message=comment,
repo_type="dataset",
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got a 404 without this.

)