d534360d by Jerald Lim

3.5

1 parent 00d21dfc
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') {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!