Skip to content

Commit

Permalink
📄 Fix playwright versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
asim-shrestha committed Oct 17, 2024
1 parent 3f33877 commit 67fa3dc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bananalyzer/data/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def handle_json_match(self, result: AllowedJSON, field: Optional[str]) -> None:

class Example(BaseModel):
id: str
url: str
url: str | None
resource_path: Optional[str] = Field(
description="Local path of a HAR, S3 URL of a HAR directory's tar.gz, or remote URL of MHTML",
default=None,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bananalyzer"
version = "0.10.10"
version = "0.10.11"


description = "Open source AI Agent evaluation framework for web tasks 🐒🍌"
Expand Down
20 changes: 8 additions & 12 deletions static/examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -37140,13 +37140,11 @@
"evals": [
{
"type": "json_match",
"expected": [
{
"address": "1295 Bandana Boulevard West, Suite 310 & 210, St. Paul, MN 55108",
"phone": "651-645-5323",
"fax": "651-621-8490"
}
]
"expected": {
"address": "1295 Bandana Boulevard West, Suite 310 & 210, St. Paul, MN 55108",
"phone": "651-645-5323",
"fax": "651-621-8490"
}
}
]
},
Expand All @@ -37171,11 +37169,9 @@
"evals": [
{
"type": "json_match",
"expected": [
{
"fax": "404-252-1196"
}
]
"expected": {
"fax": "404-252-1196"
}
}
]
}
Expand Down

0 comments on commit 67fa3dc

Please sign in to comment.