Skip to content

Commit e01a903

Browse files
authored
Update readme fixes (#58)
1 parent 36bf3fa commit e01a903

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agent-eval"
7-
version = "0.1.33"
7+
version = "0.1.34"
88
description = "Agent evaluation toolkit"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/agenteval/leaderboard/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __str__(self):
4747
}
4848
configs.append(config_def)
4949
yaml_section = yaml.dump({"configs": configs})
50-
return f"---\n{yaml_section.strip()}\n---{self.text_content.lstrip()}"
50+
return f"---\n{yaml_section.strip()}\n---\n{self.text_content.lstrip()}"
5151

5252
@staticmethod
5353
def download_and_parse(repo_id: str) -> "Readme":
@@ -97,4 +97,5 @@ def upload(self, repo_id: str, comment: str):
9797
path_in_repo="README.md",
9898
repo_id=repo_id,
9999
commit_message=comment,
100+
repo_type="dataset",
100101
)

0 commit comments

Comments
 (0)