From bc6d7c4dd35d2343fa20a0164990ffafeeed6fc1 Mon Sep 17 00:00:00 2001 From: Vasyl Korzavatykh Date: Mon, 18 Nov 2024 09:12:46 +0100 Subject: [PATCH] haiku name fix --- src/llm_postor/game/consts.py | 2 +- src/llm_postor/tournament.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/llm_postor/game/consts.py b/src/llm_postor/game/consts.py index 138dc7a..1997673 100644 --- a/src/llm_postor/game/consts.py +++ b/src/llm_postor/game/consts.py @@ -22,7 +22,7 @@ "cache_read": 0, "output_tokens": 15, }, - "anthropic/claude-3.5-haiku": { # 200k context + "anthropic/claude-3-5-haiku": { # 200k context "input_tokens": 1, "cache_read": 0, "output_tokens": 5, diff --git a/src/llm_postor/tournament.py b/src/llm_postor/tournament.py index 320290f..315fad5 100644 --- a/src/llm_postor/tournament.py +++ b/src/llm_postor/tournament.py @@ -146,7 +146,7 @@ def run(self): "google/gemini-flash-1.5", "google/gemini-pro-1.5", "anthropic/claude-3.5-sonnet", - "anthropic/claude-3.5-haiku" + "anthropic/claude-3-5-haiku" ] idx, parts = list(map(int, input("Input part of the experiment (e.g. 1/5, 3/5, etc.): ").split('/')))