Skip to content

Commit

Permalink
chore: replace "system" with "user"
Browse files Browse the repository at this point in the history
  • Loading branch information
tjmaynes committed Mar 2, 2024
1 parent 376a2e3 commit 56cddd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/data/seed.js
Expand Up @@ -42,7 +42,7 @@ const batchSeedProcess = async (
const response = await openai.chat.completions.create({
model: 'gpt-3.5-turbo',
stream: false,
messages: [{ role: 'system', content: content }],
messages: [{ role: 'user', content: content }],
})

if (response && response.choices && response.choices.length > 0) {
Expand Down

0 comments on commit 56cddd3

Please sign in to comment.