Skip to content

Commit

Permalink
Revert GPT models (#1496)
Browse files Browse the repository at this point in the history
## Motivation for the change, related issues

Forgot to commit this change in
#1495

## Implementation details

## Testing Instructions (or ideally a Blueprint)
  • Loading branch information
bgrgicak authored Jun 7, 2024
1 parent c350be3 commit 8f786c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/playground/website/public/puzzle.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function siteName()
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
"model" => "gpt-4o",
"model" => "gpt-3.5-turbo-instruct",
"prompt" => "Please come up with a random name for a website.
That's related to playing, but don't use the word 'play' in the name.
Don't suggest names combining multiple words into one.
Expand Down Expand Up @@ -90,7 +90,7 @@ function generatePost()
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
"model" => "gpt-4o",
"model" => "gpt-3.5-turbo-instruct",
"prompt" => "Please write a short fictional blog post about a great experience someone had while attending a WordCamp.
Make sure the post is complete and doesn't end abruptly. The post should be up to 300 words.
The topic should be fun and not too serious. It should be something that people would enjoy reading.
Expand Down Expand Up @@ -174,7 +174,7 @@ function readImage($image)
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
"model" => "gpt-4-turbo",
"model" => "gpt-4-vision-preview",
"messages" => [
[
"role" => "user",
Expand Down

0 comments on commit 8f786c6

Please sign in to comment.