From 146ea25974daed4b350e5bb6d9cc5f045f1710f2 Mon Sep 17 00:00:00 2001 From: "Ahmad-A0 (aider)" <71089234+Ahmad-A0@users.noreply.github.com> Date: Sun, 4 Aug 2024 01:41:58 +0100 Subject: [PATCH] fix: Update GPT4OMini model identifier --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 3ada810..eb4790d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -27,7 +27,7 @@ impl ToString for Model { Self::GPT3 => String::from("gpt-3.5-turbo-0125"), Self::Llama => String::from("meta-llama/Llama-3-70b-chat-hf"), Self::Mixtral => String::from("mistralai/Mixtral-8x7B-Instruct-v0.1"), - Self::GPT4OMini => String::from("gpt-4-0125-preview") + Self::GPT4OMini => String::from("gpt-4o-mini") } } }