Skip to content

Commit

Permalink
Update openai.js
Browse files Browse the repository at this point in the history
  • Loading branch information
zeteticl committed Nov 16, 2023
1 parent 01cd2b2 commit 9224038
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roll/openai.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const fetch = require('node-fetch');
const fs = require('fs').promises;
const fs2 = require('fs');
const VIP = require('../modules/veryImportantPerson');
const GPT3 = "gpt-3.5-turbo-0613";
const GPT4 = "gpt-4-0613";
const GPT3 = process.env.OPENAI_MODEL_GPT3 || "gpt-3.5-turbo-1106";
const GPT4 = process.env.OPENAI_MODEL_GPT4 || "gpt-4-1106-preview";
const adminSecret = process.env.ADMIN_SECRET;
const TRANSLATE_LIMIT_PERSONAL = [500, 100000, 200000, 300000, 400000, 500000, 600000, 700000];
const variables = {};
Expand Down

0 comments on commit 9224038

Please sign in to comment.