monra commited on
Commit
9e5eda6
1 Parent(s): 312395f

Synced repo using 'sync_with_huggingface' Github Action

Browse files
Files changed (2) hide show
  1. client/html/index.html +0 -1
  2. g4f/models.py +1 -1
client/html/index.html CHANGED
@@ -123,7 +123,6 @@
123
  <optgroup label="CLAUDE">
124
  <option value="claude-instant">Claude-instant</option>
125
  <option value="claude-2">Claude-2</option>
126
- <option value="claude-2-100k">Claude-2-100k</option>
127
  </optgroup>
128
  <optgroup label="{{_('IMAGE')}}">
129
  <option value="" disabled>Kandinsky (soon)</option>
 
123
  <optgroup label="CLAUDE">
124
  <option value="claude-instant">Claude-instant</option>
125
  <option value="claude-2">Claude-2</option>
 
126
  </optgroup>
127
  <optgroup label="{{_('IMAGE')}}">
128
  <option value="" disabled>Kandinsky (soon)</option>
g4f/models.py CHANGED
@@ -114,7 +114,7 @@ class ModelUtils:
114
 
115
  'claude-instant-100k': Model.claude_instant_100k,
116
  'claude-instant': Model.claude_instant,
117
- 'claude-2': Model.claude_2_100k,
118
  'claude-2-100k': Model.claude_2_100k,
119
 
120
  'llama-2-7b-chat': Model.llama_2_7b_chat,
 
114
 
115
  'claude-instant-100k': Model.claude_instant_100k,
116
  'claude-instant': Model.claude_instant,
117
+ 'claude-2': Model.claude_2,
118
  'claude-2-100k': Model.claude_2_100k,
119
 
120
  'llama-2-7b-chat': Model.llama_2_7b_chat,