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

SurveyJS custom survey software

Simplify data collection in your JS app with a fully integrated form management platform. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more. Integrates with any backend system, giving you full control over your data and no user limits.

Learn more

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

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay