started working on Open AI codex playground. https://beta.openai.com/codex-javascript-sandbox
The playground takes the instructions to create the javascript code. The comments are the instructions.
/* print a string open ai codex */
var aiCodex = document.createElement('div');
aiCodex.innerHTML = '<a href="https://openai.com/blog/openai-baselines-ppo/">OpenAI Baselines: Proximal Policy Optimization</a>';
document.body.appendChild(aiCodex);
`
Looks like OpenAI Codex did not understand the instruction right.
/* say hello */
`
var hello = document.createElement('div');
hello.innerHTML = 'Hello';
document.body.appendChild(hello);
`
say hello came out right
/* calculate 3*4 */
`
var threeTimesFour = document.createElement('div');
threeTimesFour.innerHTML = '3*4 = ' + (3*4);
document.body.appendChild(threeTimesFour);
`
In the next post, we will look at complex examples.....
Top comments (0)