DEV Community

Bhagvan Kommadi
Bhagvan Kommadi

Posted on

19 1

Open AI Codex playground

Alt Text

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.....


Enter fullscreen mode Exit fullscreen mode

If this post was valuable to you

Please leave your appreciation by commenting!

Everyone is welcome

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay