Add "gpt-3.5-turbo-16k" model chat_completion.rs

I needed this 16k context model but saw it is not added.
This commit is contained in:
Anil Maharjan
2023-10-20 10:39:46 +02:00
committed by GitHub
parent d744946a5a
commit c181bbf475

View File

@ -6,6 +6,7 @@ use crate::impl_builder_methods;
use crate::v1::common;
pub const GPT3_5_TURBO: &str = "gpt-3.5-turbo";
pub const GPT3_5_TURBO_16K: &str = ""gpt-3.5-turbo-16k"";
pub const GPT3_5_TURBO_0301: &str = "gpt-3.5-turbo-0301";
pub const GPT3_5_TURBO_0613: &str = "gpt-3.5-turbo-0613";