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.49"
version = "0.1.50"
description = "Agent evaluation toolkit"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/agenteval/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def prep_litellm_cost_map():
# This snippet is mostly lifted from
# https://github.com/BerriAI/litellm/blob/b9621c760d3355e06dd17ec89b9eb6776755392e/litellm/litellm_core_utils/get_model_cost_map.py#L16
# See the Development.md before changing.
desired_model_costs_url = "https://raw.githubusercontent.com/BerriAI/litellm/26fcbc93e52d8f212f818d53c6922a0fdddb4d48/litellm/model_prices_and_context_window_backup.json"
desired_model_costs_url = "https://raw.githubusercontent.com/BerriAI/litellm/319193604cfccb1092a17f58ec4ca049115da446/litellm/model_prices_and_context_window_backup.json"
response = httpx.get(desired_model_costs_url, timeout=5)
response.raise_for_status()
desired_model_costs = response.json()
Expand Down
Loading