Skip to content

Commit

Permalink
chore: openai prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
jakowenko committed Jun 22, 2023
1 parent f0b785c commit 7b09a3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ openai:
# model name (https://platform.openai.com/docs/models/overview)
model: gpt-3.5-turbo
# prompt used to generate a summary from transcripts
prompt: You are a helpful assistant that will take a string of random conversations and pull out a few keywords and topics that were talked about. You will then turn this into a short description to describe a picture, painting, or artwork. It should be no more than two or three sentences and be something that DALL·E can use. Make sure it doesn't contain words that would be rejected by your safety system.
prompt: You will be given a string of random conversations and need to pull out a few keywords and topics that were talked about. You will then turn this into a short description to describe a picture. It should be no more than two or three sentences.
# prompt used to generate a random summary
random: Provide a random short description to describe a picture, painting, or artwork. It should be no more than two or three sentences and be something that DALL·E can use. Make sure it doesn't contain words that would be rejected by your safety system.
random: Provide a random short description to describe a picture. It should be no more than two or three sentences.

image:
# enable or disable image generation
Expand Down
4 changes: 2 additions & 2 deletions api/src/config/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export default {
summary: {
model: 'gpt-3.5-turbo',
prompt:
"You are a helpful assistant that will take a string of random conversations and pull out a few keywords and topics that were talked about. You will then turn this into a short description to describe a picture, painting, or artwork. It should be no more than two or three sentences and be something that DALL·E can use. Make sure it doesn't contain words that would be rejected by your safety system.",
'You will be given a string of random conversations and need to pull out a few keywords and topics that were talked about. You will then turn this into a short description to describe a picture. It should be no more than two or three sentences.',
random:
"Provide a random short description to describe a picture, painting, or artwork. It should be no more than two or three sentences and be something that DALL·E can use. Make sure it doesn't contain words that would be rejected by your safety system.",
'Provide a random short description to describe a picture. It should be no more than two or three sentences.',
},
image: {
enable: true,
Expand Down

0 comments on commit 7b09a3a

Please sign in to comment.