AchyuthGamer commited on
Commit
914c1ca
1 Parent(s): a597570

Update g4f/models.py

Browse files
Files changed (1) hide show
  1. g4f/models.py +6 -0
g4f/models.py CHANGED
@@ -12,7 +12,13 @@ class Model:
12
  base_provider: str = 'Achyuth'
13
  best_provider: Provider.Provider = Provider.Wewordle
14
 
 
 
 
 
 
15
  class ModelUtils:
16
  convert: dict = {
17
  'gpt-3.5-turbo': Model.gpt_35_turbo,
 
18
  }
 
12
  base_provider: str = 'Achyuth'
13
  best_provider: Provider.Provider = Provider.Wewordle
14
 
15
+ class gpt_35_turbo_0301:
16
+ name: str = 'gpt-3.5-turbo-0301'
17
+ base_provider: str = 'openai'
18
+ best_provider: Provider.Provider = Provider.Wewordle
19
+
20
  class ModelUtils:
21
  convert: dict = {
22
  'gpt-3.5-turbo': Model.gpt_35_turbo,
23
+ 'gpt-3.5-turbo-0301': Model.gpt_35_turbo_0301,
24
  }