diff options
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/g4f/models.py b/g4f/models.py index 9b01fa3c..5c1a429b 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -127,6 +127,10 @@ gpt_35_turbo_16k = Model( base_provider = 'openai', best_provider = Vercel) +gpt_35_turbo_0613 = Model( + name = 'openai:gpt-3.5-turbo-0613', + base_provider = 'openai') + gpt_35_turbo_16k_0613 = Model( name = 'openai:gpt-3.5-turbo-16k-0613', base_provider = 'openai') @@ -215,4 +219,5 @@ class ModelUtils: 'oasst-sft-4-pythia-12b-epoch-3.5' : oasst_sft_4_pythia_12b_epoch_35, 'command-light-nightly' : command_light_nightly, 'gpt-3.5-turbo-16k-0613' : gpt_35_turbo_16k_0613, + 'gpt-3.5-turbo-0613' : gpt_35_turbo_0613, }
\ No newline at end of file |