From 0fcfd46bacd9fb99894fbc63e1aa00b5fa0c5c60 Mon Sep 17 00:00:00 2001 From: Charlie <45036245+charliemday@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:59:20 +0000 Subject: [PATCH] Added Claude 3.5 Haiku Pricing --- costs/src/providers/anthropic/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/costs/src/providers/anthropic/index.ts b/costs/src/providers/anthropic/index.ts index b31c10ac4..f297bd7e6 100644 --- a/costs/src/providers/anthropic/index.ts +++ b/costs/src/providers/anthropic/index.ts @@ -113,4 +113,15 @@ export const costs: ModelRow[] = [ }, showInPlayground: true, }, + { + model: { + operator: "equals", + value: "claude-3-5-haiku-20241022", + }, + cost: { + prompt_token: 0.000001, + completion_token: 0.000005, + }, + showInPlayground: true, + }, ];