3.5
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -324,7 +324,7 @@ app.get('/models', async (req, res) => { | ... | @@ -324,7 +324,7 @@ app.get('/models', async (req, res) => { |
| 324 | if (model.id.includes('gpt-3')) { | 324 | if (model.id.includes('gpt-3')) { |
| 325 | const d = new Date(model.created * 1000); | 325 | const d = new Date(model.created * 1000); |
| 326 | let month = months[d.getMonth()]; | 326 | let month = months[d.getMonth()]; |
| 327 | model.name = 'GPT-3 ' + month + ' ' + d.getDate(); | 327 | model.name = 'GPT-3.5 ' + month + ' ' + d.getDate(); |
| 328 | } else if (model.id == 'dall-e-2') { | 328 | } else if (model.id == 'dall-e-2') { |
| 329 | model.name = 'DALL-E 2'; | 329 | model.name = 'DALL-E 2'; |
| 330 | } else if (model.id == 'dall-e-3') { | 330 | } else if (model.id == 'dall-e-3') { | ... | ... |
-
Please register or sign in to post a comment