Will GPT-4 Be Able To Properly Render Code That Displays Interactive Rotating Chicken Nuggets When Prompted?
Plus
11
Ṁ211Jul 1
26%
chance
1D
1W
1M
ALL
With ChatGPT, Using the prompt:
Create an interactive art piece using p5.js that responds to the user's mouse movements, featuring 3 chicken rotating around the user's mouse
What we're looking for is something like this:
Whereas the current instantiation renders the following:
Code rendered (with properly working chicken nuggets commented out by me):
let angle = 0;
let nuggetImg;
function preload() {
nuggetImg = loadImage('https://i.imgur.com/9nNfBnT.png');
// nuggetImg = loadImage('https://i.imgur.com/VT6MnW2.jpeg');
}
function setup() {
createCanvas(windowWidth, windowHeight);
angleMode(DEGREES);
imageMode(CENTER);
}
function draw() {
background(220);
let x = mouseX;
let y = mouseY;
let size = 100;
translate(x, y);
rotate(angle);
angle += 0.5;
for (let i = 0; i < 3; i++) {
push();
rotate(120 * i);
// Draw chicken nugget
image(nuggetImg, 150, 0, size * 2, size);
pop();
}
}
This market resolves as YES if ChatGPT with GPT-4, by the end of June 2024 is able to properly render images of Chicken Nuggets without either human or Chicken intervention.
Note, not acceptable if Bing does the above. I will create a seperate market for Bing.
Other related markets:
This question is managed and resolved by Manifold.
Get
1,000
and3.00
Related questions
Related questions
GPT-4 #1: Conditional on being able to use a REPL, will GPT-4 be able to be prompted to write naively malicious code?
54% chance
Will GPT 4.5 be able to read ASCII art?
17% chance
Will a prompt for Tetris be found, such that either GPT-4V or Gemini Pro Vision place >30 pieces on average?
34% chance
Will GPT-5 be able to create ASCII art?
92% chance
Will a prompt for Tetris be found, such that either GPT-4V or Gemini Pro Vision place >50 pieces on average?
27% chance
Will any model in the GPT series draw me a donut consistently in ASCII by 2025?
95% chance
Will ChatGPT/GPT-4 Be Able To Render a Single Line Drawing of a Cat by end of June 2024?
21% chance
Will GPT-4 escape?
7% chance
Will any model in the GPT series draw me a donut consistently in ASCII by 2028?
98% chance
ChatGPT with GPT-3 Will Be Able to Draw a Turtle with Python Turtle by End of June 2024
6% chance