Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Removed models no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
ramon-victor committed Jul 17, 2023
1 parent 0a75692 commit f188bc6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
4 changes: 0 additions & 4 deletions client/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,7 @@
<optgroup label="GPT">
<option value="gpt-3.5-turbo">GPT-3.5-turbo</option>
<option value="gpt-3.5-turbo-poe">GPT-3.5-turbo-poe</option>
<option value="gpt-3.5-turbo-openai">GPT-3.5-turbo-openai</option>
<option value="gpt-3.5-turbo-16k">GPT-3.5-turbo-16k</option>
<option value="gpt-3.5-turbo-16k-openai">
GPT-3.5-turbo-16k-openai
</option>
<option value="gpt-3.5-turbo-16k-poe">GPT-3.5-turbo-16k-poe</option>
<option value="gpt-4">GPT-4</option>
<option value="gpt-4-0613">GPT-4-0613</option>
Expand Down
12 changes: 0 additions & 12 deletions g4f/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,11 @@ class gpt_35_turbo_poe:
base_provider: str = 'poe'
best_provider: Provider.Provider = Provider.Chimera

class gpt_35_turbo_openai:
name: str = 'gpt-3.5-turbo-openai'
base_provider: str = 'openai'
best_provider: Provider.Provider = Provider.Chimera

class gpt_35_turbo_16k:
name: str = 'gpt-3.5-turbo-16k'
base_provider: str = 'reversed'
best_provider: Provider.Provider = Provider.Chimera

class gpt_35_turbo_16k_openai:
name: str = 'gpt-3.5-turbo-16k-openai'
base_provider: str = 'openai'
best_provider: Provider.Provider = Provider.Chimera

class gpt_35_turbo_16k_poe:
name: str = 'gpt-3.5-turbo-16k-poe'
base_provider: str = 'poe'
Expand Down Expand Up @@ -87,9 +77,7 @@ class ModelUtils:
convert: dict = {
'gpt-3.5-turbo': Model.gpt_35_turbo,
'gpt-3.5-turbo-poe': Model.gpt_35_turbo_poe,
'gpt-3.5-turbo-openai': Model.gpt_35_turbo_openai,
'gpt-3.5-turbo-16k': Model.gpt_35_turbo_16k,
'gpt-3.5-turbo-16k-openai': Model.gpt_35_turbo_16k_openai,
'gpt-3.5-turbo-16k-poe': Model.gpt_35_turbo_16k_poe,
'gpt-4': Model.gpt_4,
'gpt-4-0613': Model.gpt_4_0613,
Expand Down

0 comments on commit f188bc6

Please sign in to comment.