Skip to content

Commit c9bac01

Browse files
committed
gpt4 turbo
1 parent 69d7373 commit c9bac01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alfred-search-and-context.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const main = async () => {
6363
const contextPrompt = `I only have the following quote, recreate outside context using concepts from the world. Do a breadth first search of external data. This means that you are **not rephrasing the content in the quote**. You are pulling in examples and information from the world **outside the set** of the quote. Do not bother repeating or rehashing the quote.\n\nQuote:\n${quote.text}\n-- ${quote.title} by ${quote.author}\n\nContext:\n`;
6464

6565
const completion = await openai.createChatCompletion({
66-
model: "gpt-4-turbo-preview",
66+
model: "gpt-4-turbo",
6767
messages: [
6868
{
6969
role: "system",

embed-into-supabase.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const generateQuestion = async (text) => {
4343
content: prompt,
4444
},
4545
],
46-
model: "gpt-3.5-turbo",
46+
model: "gpt-4-turbo",
4747
});
4848

4949
const content = completion.data.choices[0].message.content;

0 commit comments

Comments
 (0)