fix: Update GPT4OMini model identifier

This commit is contained in:
Ahmad-A0 (aider) 2024-08-04 01:41:58 +01:00
parent 1d9a05fb51
commit 146ea25974
1 changed files with 1 additions and 1 deletions

View File

@ -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")
}
}
}