• Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
Tuesday, October 14, 2025
newsaiworld
  • Home
  • Artificial Intelligence
  • ChatGPT
  • Data Science
  • Machine Learning
  • Crypto Coins
  • Contact Us
No Result
View All Result
  • Home
  • Artificial Intelligence
  • ChatGPT
  • Data Science
  • Machine Learning
  • Crypto Coins
  • Contact Us
No Result
View All Result
Morning News
No Result
View All Result
Home ChatGPT

I Tried GPT-5 Codex and Right here is Why You Should Too!

Admin by Admin
September 17, 2025
in ChatGPT
0
I tried gpt5 codex and here is why you must too 1.webp.webp
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter

READ ALSO

OpenAI claims GPT-5 has 30% much less political bias • The Register

We’re all going to be paying AI’s Godzilla-sized energy payments • The Register


OpenAI has launched GPT-5 Codex, a variant of OpenAI’s newest AI mannequin GPT-5, specialised in agentic coding. It comes as a singular providing, offering real-time help to programmers with the flexibility to autonomously carry out lengthy duties. GPT-5 Codex will repair pre-existing bugs earlier than deployment, full exceptionally difficult refactoring, and combine with something out of your cloud surroundings and IDE to command line terminals, GitHub, and ChatGPT instantly.

Codex CLI brings these capabilities to your terminal and permits studying, rewriting, and executing code regionally. You may request a particular characteristic, debug, or ask for an evidence with out breaking out of the shell, and preserve full connectivity together with your ChatGPT account. Right here, we are going to consider the efficiency of Codex CLI to see the way it handles actual programming duties, particularly internet improvement and knowledge evaluation.

What’s Codex CLI?

The brand new GPT-5-based Codex CLI is an open-source command-line instrument forked from OpenAI’s unique Codex CLI. It now helps a number of AI suppliers. It permits builders to work together with giant language fashions within the terminal for duties like code technology, refactoring, script clarification, and plenty of extra.

Codex CLI acts as a sensible terminal associate for coding. It listens to your requests and writes code. Codex CLI has entry to your shell and file system. In case you’re on the lookout for detailed walkthroughs, take a look at the guides on codex CLI from OpenAI:

https://openai.com/index/introducing-upgrades-to-codex

Set up

Earlier than continuing with the set up, make sure that the system necessities are happy.

System Necessities for Codex CLI

  • Working System: macOS 12+, Ubuntu 20.04+, Home windows 11 (through WSL2)
  • Node.js Model: 22 or newer (LTS beneficial). You may set up Node.js by following the directions on its official web page: https://nodejs.org/
  • npm: Required (comes with Node.js)
  • Git: Non-obligatory however beneficial
  • RAM: 4 GB minimal, 8 GB beneficial
  • Web: Required
  • Authentication: OpenAI API Key

Set up Steps for Codex CLI

1. Verify Node.js model:

node --version #Be certain that it's model 22 or increased.

2. Set up Codex CLI globally, or utilizing pnpm:

pnpm add -g @openai/codex

3. After logging in together with your GPT-Plus or Professional credentials, you will notice the next display.

GPT-5 Codex

4. Add this line to your shell config file (e.g., ~/.bashrc, ~/.zshrc) for persistence.

5. Run Codex CLI:

codex

6. Or go a immediate instantly:

Codex

codex “clarify this codebase to me”

Issues to Preserve in Thoughts

  • Node.js and npm (Node Package deal Supervisor) should be put in and out there in your system PATH.
  • For Codex CLI, Node.js 22+ is required, whereas Gemini CLI works with Node.js 18+.
  • Each require authentication through API keys or account login for full performance.
  • On Home windows, Codex CLI is finest run through WSL2 for full compatibility.
  • Bear in mind, whenever you wish to use your CLI for a sure venture, be sure to have the present working listing set to the folder path the place your venture exists.

Operating our CLI Cases

Let’s proceed to check the codex with GPT-5 on 3 duties

  • Constructing a recreation on a neighborhood host
  • Constructing a Each day calorie-tracing utility
  • Constructing a Sentimental Evaluation Mannequin Workflow

If all of the set up steps are full and the system necessities are met, we are able to begin with the checks.

Activity 1 – Constructing a recreation on a neighborhood host

Purpose: Construct a 2D arcade shooter with enemies and scoring.

Immediate:

“Create a easy 2D house shooter recreation utilizing JavaScript and HTML5 canvas (or Python Pygame if most popular). The sport ought to show a spaceship managed by the participant with keyboard arrow keys for motion and the spacebar for capturing. Enemies ought to spawn on the high and transfer downward at random intervals. Implement collision detection so bullets destroy enemies and enhance the rating. Add a fundamental game-over situation if enemies collide with the participant’s ship. Use pixel-art type graphics and guarantee easy animations.”

It’s evident that Codex efficiently produced an nearly absolutely outlined 2D house shooter, being very clear and exact in its output. The implementation included participant controls, enemy spawning, collision detection, and scoring, all organized in a method that was straightforward to comply with. Nearly each time, it ran in underneath one second with solely minor changes, which was a pleasing shock.

Output:

The very easy design, pixel-art graphics, and responsive animations offered a elegant really feel, although it was a easy recreation. The USP right here was Codex’s capacity to principally translate a natural-language immediate right into a functioning interactive prototype. The sport-over logic, rating monitoring, and even text-displaying messages had been all practical as effectively, demonstrating Codex’s skills in each logic and presentation.

Activity 2: Constructing a Each day calorie-tracing utility

Purpose: Construct an interactive dashboard with charts and consumer enter.

Immediate:

“Develop a health tracker dashboard utilizing HTML, CSS, JavaScript, and a charting library (like Chart.js). Permit the consumer to log each day steps, energy burned, and hours slept. Show this knowledge in real-time on dynamic charts (bar chart for steps, line chart for energy, pie chart for sleep distribution). Add a weekly abstract part that calculates averages and highlights the most effective/worst day. Embody a easy native storage mechanism so consumer knowledge persists throughout web page refreshes. Fashion the dashboard with a clear, trendy UI.”

Output:

GPT-5 Codex offered probably the most sensible and feature-rich implementation. It built-in Chart.js easily, with responsive bar, line, and pie charts updating in actual time. The weekly abstract part calculated averages precisely, highlighting the most effective and worst days with readability. Moreover, Codex dealt with native storage effectively, guaranteeing persistence throughout classes, and styled the dashboard with a clear, trendy interface.

Activity 3: Constructing a Sentimental Evaluation Mannequin Workflow

Purpose: Analyze textual content knowledge for insights.

Immediate:

“Carry out sentiment evaluation on a dataset. Implement this in a Jupyter Pocket book. Begin by cleansing the textual content (take away stopwords, punctuation, and apply tokenization). Use a pre-trained sentiment evaluation mannequin (e.g., from Hugging Face Transformers or TextBlob). Evaluate mannequin predictions with precise scores and calculate accuracy. Visualize the distribution of constructive, impartial, and unfavorable sentiments utilizing charts. Finish with a minimum of three insights about how buyer scores align (or misalign) with the sentiment evaluation mannequin.”

Output:

GPT-5 Codex delivered a transparent and structured workflow for sentiment evaluation. It carried out textual content cleansing, tokenization, and mannequin integration with minimal friction, producing dependable outcomes total. The comparability of predictions with precise scores labored effectively, and the accuracy calculation was easy. Other than a small error in a single print assertion, the whole lot executed easily, together with saving sentiment distribution charts for insights.

Codex

You could find the full code type right here and obtain the dataset from Kaggle.

We not too long ago in contrast Codex with Gemini and Claude Code (learn the total comparability right here). On the time, we discovered Claude Code to be the most effective throughout all duties. Nevertheless, the brand new GPT-5-based Codex brings vital enhancements with respect to its earlier model. Within the subsequent part, we’ll examine the general efficiency of the brand new GPT-5-Codex in these regards.

Total Evaluation

In my earlier weblog, whereas accessing and evaluating Codex CLI, Gemini CLI, and Claude Code, every exhibited differing strengths. Codex was nice at producing quick and iterative code. Gemini was extra helpful with energetic search outcomes and working instructions. Claude produced depth with nice documentation and construction. Every instrument can simply be used for debugging or intervention. Although they need to be checked by a human previous to deployment.

GPT-5 Codex is a exceptional enchancment of the Codex line. As a lot because it retains the pace and readability of Codex, it now contains agentic autonomy to deal with bug fixes, refactoring, visualization, and run workflow with no /little intervention. Not like Gemini’s use-case framework and Claude’s construction and depth, or pace of navigation, GPT-5 Codex turns into a mixture of each ends: producing good, clear, dependable, and production-ready options digitally at an alarming tempo as coded, making it the most effective instrument of the three.

Conclusion

GPT-5 Codex with Codex CLI demonstrates how AI can function a dependable associate in coding by changing pure language prompts into practical, production-ready code. From participating interactive video games to polished dashboards and sentiment evaluation workflows, it produced polished work with solely minimal edits wanted, demonstrating its versatility in improvement purposes.

Along with automation, Codex enhances developer productiveness by simply integrating into IDEs, terminals, and cloud environments. The flexibility to help meaningfully in real-time with debugging, refactoring, and automation makes it each a practical and related trendy programming instrument. Whereas a few of its outputs might proceed to want minor revisions, Codex exemplifies the way forward for agentic coding for programmers to raise their working, high-potential merchandise.


Vipin Vashisth

Hey! I am Vipin, a passionate knowledge science and machine studying fanatic with a robust basis in knowledge evaluation, machine studying algorithms, and programming. I’ve hands-on expertise in constructing fashions, managing messy knowledge, and fixing real-world issues. My objective is to use data-driven insights to create sensible options that drive outcomes. I am desirous to contribute my abilities in a collaborative surroundings whereas persevering with to study and develop within the fields of Knowledge Science, Machine Studying, and NLP.

Login to proceed studying and luxuriate in expert-curated content material.

Tags: CodexGPT5

Related Posts

Justice shutterstock.jpg
ChatGPT

OpenAI claims GPT-5 has 30% much less political bias • The Register

October 14, 2025
Shutterstock high voltage.jpg
ChatGPT

We’re all going to be paying AI’s Godzilla-sized energy payments • The Register

October 13, 2025
Image1 1.png
ChatGPT

Can TruthScan Detect ChatGPT’s Writing?

September 12, 2025
No shutterstock.jpg
ChatGPT

FreeBSD Undertaking is not able to let AI commit code simply but • The Register

September 3, 2025
Aimemory.jpg
ChatGPT

Mistral AI’s Le Chat can now bear in mind your conversations • The Register

September 2, 2025
Shutterstock 187711835.jpg
ChatGPT

The air is hissing out of the overinflated AI balloon • The Register

August 25, 2025
Next Post
Fahmi huwaidy tcn961 pwha unsplash scaled 1.jpg

Evaluation of Gross sales Shift in Retail with Causal Influence: A Case Research at Carrefour

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

POPULAR NEWS

Blog.png

XMN is accessible for buying and selling!

October 10, 2025
0 3.png

College endowments be a part of crypto rush, boosting meme cash like Meme Index

February 10, 2025
Gemini 2.0 Fash Vs Gpt 4o.webp.webp

Gemini 2.0 Flash vs GPT 4o: Which is Higher?

January 19, 2025
1da3lz S3h Cujupuolbtvw.png

Scaling Statistics: Incremental Customary Deviation in SQL with dbt | by Yuval Gorchover | Jan, 2025

January 2, 2025
Gary20gensler2c20sec id 727ca140 352e 4763 9c96 3e4ab04aa978 size900.jpg

Coinbase Recordsdata Authorized Movement In opposition to SEC Over Misplaced Texts From Ex-Chair Gary Gensler

September 14, 2025

EDITOR'S PICK

Data mining 3 hanna barakat aixdesign archival images of ai 3328x2312.png

Hitchhiker’s Information to RAG: From Tiny Information to Tolstoy with OpenAI’s API and LangChain

July 12, 2025
Harmony in diversity in times of disruption.webp.webp

Why Tech Wants a Soul

June 11, 2025
Dag Fork 5 1024x538.png

Regression Discontinuity Design: How It Works and When to Use It

May 7, 2025
Solana20wallets20hack Id 8358c09f E4e7 43de Bf97 399695cf7c60 Size900.jpg

Why is Solana Up? Blockchain Exercise Soars Following TRUMP Memecoin Launch

January 25, 2025

About Us

Welcome to News AI World, your go-to source for the latest in artificial intelligence news and developments. Our mission is to deliver comprehensive and insightful coverage of the rapidly evolving AI landscape, keeping you informed about breakthroughs, trends, and the transformative impact of AI technologies across industries.

Categories

  • Artificial Intelligence
  • ChatGPT
  • Crypto Coins
  • Data Science
  • Machine Learning

Recent Posts

  • Why AI Nonetheless Can’t Substitute Analysts: A Predictive Upkeep Instance
  • Kenya’s Legislators Cross Crypto Invoice to Enhance Investments and Oversight
  • Constructing A Profitable Relationship With Stakeholders
  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

© 2024 Newsaiworld.com. All rights reserved.

No Result
View All Result
  • Home
  • Artificial Intelligence
  • ChatGPT
  • Data Science
  • Machine Learning
  • Crypto Coins
  • Contact Us

© 2024 Newsaiworld.com. All rights reserved.

Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?