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) => {
if (model.id.includes('gpt-3')) {
const d = new Date(model.created * 1000);
let month = months[d.getMonth()];
model.name = 'GPT-3 ' + month + ' ' + d.getDate();
model.name = 'GPT-3.5 ' + month + ' ' + d.getDate();
} else if (model.id == 'dall-e-2') {
model.name = 'DALL-E 2';
} 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!