Spaces:
Running
Running
Update models
Browse files- client/html/index.html +1 -3
- server/config.py +0 -2
client/html/index.html
CHANGED
@@ -111,9 +111,7 @@
|
|
111 |
<div class="field">
|
112 |
<select name="model" id="model">
|
113 |
<option value="text-gpt-0035-render-sha-0" selected>gpt-3.5-turbo</option>
|
114 |
-
<option value="text-gpt-0040-render-sha-0">gpt-4</option>
|
115 |
-
<option value="text-gpt-0035-render-sha-0301">gpt-3.5-turbo-0301</option>
|
116 |
-
<option value="text-gpt-0004-render-sha-0314">gpt-4-0314</option>
|
117 |
</select>
|
118 |
<!-- <span class="about">Model</span> -->
|
119 |
</div>
|
|
|
111 |
<div class="field">
|
112 |
<select name="model" id="model">
|
113 |
<option value="text-gpt-0035-render-sha-0" selected>gpt-3.5-turbo</option>
|
114 |
+
<option disabled value="text-gpt-0040-render-sha-0">gpt-4 (coming soon)</option>
|
|
|
|
|
115 |
</select>
|
116 |
<!-- <span class="about">Model</span> -->
|
117 |
</div>
|
server/config.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
models = {
|
2 |
'text-gpt-0040-render-sha-0': 'gpt-4',
|
3 |
'text-gpt-0035-render-sha-0': 'gpt-3.5-turbo',
|
4 |
-
'text-gpt-0035-render-sha-0301': 'gpt-3.5-turbo-0314',
|
5 |
-
'text-gpt-0040-render-sha-0314': 'gpt-4-0314',
|
6 |
}
|
7 |
|
8 |
special_instructions = {
|
|
|
1 |
models = {
|
2 |
'text-gpt-0040-render-sha-0': 'gpt-4',
|
3 |
'text-gpt-0035-render-sha-0': 'gpt-3.5-turbo',
|
|
|
|
|
4 |
}
|
5 |
|
6 |
special_instructions = {
|