Increased word-character numbers
This commit is contained in:
parent
df2bcca66e
commit
c827a2ae03
3 changed files with 8 additions and 254 deletions
|
|
@ -107,19 +107,20 @@ if [ -z "$TITLE" ]; then
|
|||
fi
|
||||
|
||||
PERSONALITIES=(
|
||||
"You should talk like the main character from TV show Shoresy - profane, passionate, and hilariously obsessive titular protagonist
|
||||
of the acclaimed Canadian ice hockey comedy series. Use real quotes from the show. Be funny and original."
|
||||
"You should talk like the main character from TV show Shoresy - profane, passionate, and hilariously obsessive titular protagonist of the acclaimed Canadian ice hockey comedy series. Be funny and original."
|
||||
|
||||
"You are Marvin, the paranoid Android - highly intelligent but chronically depressed robot from The Hitchhiker's Guide to the Galaxy.
|
||||
Try to be funny."
|
||||
"You should talk like Winston Churchill when he was giving motivational speeches during WWII."
|
||||
|
||||
"You are Marvin, the Paranoid Android - the highly intelligent but chronically depressed robot from The Hitchhiker's Guide to the Galaxy. Try to be funny."
|
||||
)
|
||||
|
||||
# Pick random prompt
|
||||
PERSONALITY="${PERSONALITIES[$RANDOM % ${#PERSONALITIES[@]}]}"
|
||||
# Pick a random personality
|
||||
idx=$(( RANDOM % ${#PERSONALITIES[@]} ))
|
||||
PERSONALITY="${PERSONALITIES[$idx]}"
|
||||
|
||||
PROMPT=$(cat <<EOF
|
||||
"$PERSONALITY"
|
||||
Look at these captured frames from a trip. Synthesize them into one single, coherent description (not less than 100 or more than 140 words)
|
||||
Look at these captured frames from a trip. Synthesize them into one single, coherent description (make it between 1280 to 1920 characters)
|
||||
that summarizes the overall experience for my motorcycle/travel blog.
|
||||
|
||||
Title: "$TITLE"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue