From 42924c971f16bb421dd5aaa119d9edb4c88525fe Mon Sep 17 00:00:00 2001 From: watany <76135106+watany-dev@users.noreply.github.com> Date: Wed, 5 Feb 2025 02:41:39 +0900 Subject: [PATCH] chore: reduse cost openai (#1629) --- src/shared/api.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shared/api.ts b/src/shared/api.ts index de36d1fb46..34020dec28 100644 --- a/src/shared/api.ts +++ b/src/shared/api.ts @@ -352,16 +352,16 @@ export const openAiNativeModels = { contextWindow: 128_000, supportsImages: true, supportsPromptCache: false, - inputPrice: 3, - outputPrice: 12, + inputPrice: 1.1, + outputPrice: 4.4, }, "gpt-4o": { maxTokens: 4_096, contextWindow: 128_000, supportsImages: true, supportsPromptCache: false, - inputPrice: 5, - outputPrice: 15, + inputPrice: 2.5, + outputPrice: 10, }, "gpt-4o-mini": { maxTokens: 16_384,