Jobs & Careers
OpenAI’s o3 Beats Grok 4 to Win AI Chess Tournament

Just a day before OpenAI’s o3 reasoning model was officially retired from ChatGPT on August 8 in favour of GPT-5 with built-in reasoning capabilities, it won Kaggle’s AI Chess Exhibition Tournament. The model beat xAI’s Grok-4 model to win the finals 4-0.
The model reached the finals, beating the Kimi K2 Instruct model in the quarter-finals and the company’s own o4-mini model with the same scoreline.
“Up until the semifinals, it seemed like nothing would be able to stop Grok 4 on its way to winning the event,” said Chess.com, the world’s leading platform for online chess.
“But the illusion fell through on the last day of the tournament. The chatty o3 simply dismantled its mysterious opponent with four convincing wins. Grok’s play was unrecognisable, blundering soon and often. And for the most part, o3 showed no mercy,” the platform added in its analysis of the game.
In the match for the third place between Google’s Gemini 2.5 Pro and the o4-mini, the former model took the bronze medal with 2.5-1.5.
The tournament took place in Kagle’s Game Arena, a benchmarking platform where models from Google, Anthropic and OpenAI compete in game-based environments. “Games provide a clear, unambiguous signal of success: you either win, lose or draw. Their structured nature and measurable outcomes make them the perfect testbed for evaluating models,” Kaggle said in a blog post.
Regarding chess, Kaggle said the decision by the model stems from internal logic rather than just memorisation. Models must adapt quickly, recover from mistakes and exploit opportunities, “like a human grandmaster”, added Kaggle.
Full details of the game can be found here.
The post OpenAI’s o3 Beats Grok 4 to Win AI Chess Tournament appeared first on Analytics India Magazine.
Jobs & Careers
NVIDIA & AMD to Now Pay 15% of China Sale Revenue to the US

US chipmakers NVIDIA and AMD recently received permission to sell their H20 and MI308 AI chips to China, respectively, amid tightened export controls. According to the latest reports, companies will now allocate 15% of their revenue from sales of these advanced chips to the US government.
The agreement follows the Donald Trump administration’s decision in April to halt H20 chip sales to China. By early 2025, Chinese firms reported severe shortages, and NVIDIA had warned of a potential $5.5 billion hit to its bottom line. Notably, last month, the administration allowed both NVIDIA and AMD to resume sales after obtaining export licences.
NVIDIA had also announced the RTX PRO GPU, a China-specific chip engineered to comply with US regulations. The RTX PRO joins the H20 and other variants, designed to maintain NVIDIA’s presence in China while adhering to legal boundaries.
China is a key market for both companies. In a visit to Beijing in April, NVIDIA CEO Jensen Huang said China was a critical market for NVIDIA and added, “We hope to continue to cooperate with China.”
Moreover, at the opening ceremony of the third China International Supply Chain Expo in Beijing this year, Huang called Chinese AI models “world-class”. This included DeepSeek, the one model that was ‘banned’ on multiple US government devices like those of NASA and the Navy.
In the same ceremony, he asserted that he has excellent relations with “just about’ every government”. “Anyone who discounts Huawei and China’s manufacturing capability is deeply naive. This is a formidable company, and I’ve seen the technologies they’ve created in the past,” he added.
Moreover, US commerce secretary Howard Lutnick said last month that the resumption of AI chip sales was part of negotiations with China to secure rare earths. He described the H20 as NVIDIA’s “fourth-best chip” and said it was in the US’ interests for Chinese firms to use American technology, even if the most advanced chips remained restricted.
The post NVIDIA & AMD to Now Pay 15% of China Sale Revenue to the US appeared first on Analytics India Magazine.
Jobs & Careers
Graas.ai Secures $9 Million to Expand AI Agent Foundry in India

Email:
info@aimmediahouse.com
Our Offices
AIM India
1st Floor, Sakti Statesman, Marathahalli – Sarjapur Outer Ring Rd, Green Glen Layout, Bellandur, Bengaluru, Karnataka 560103
AIM Americas
166 Geary St STE 1500 Suite #634, San Francisco, California 94108, United States
Jobs & Careers
Agentic AI Hands-On in Python: A Video Tutorial


Image by Editor | ChatGPT
# Introduction
Sometimes it feels like agentic AI is just AI that’s taken an improv class and now won’t stop making its own decisions. Trying to more accurately define agentic AI can feel like explaining jazz to someone who’s never heard music. It’s part autonomy, part orchestration, and 100% guaranteed to make you question who’s actually running the show.
Well, there’s no need to be confused by agentic AI any longer. This video, recently recorded from an ODSC talk and made broadly available by its creators, is a comprehensive four-hour workshop on agentic AI engineering, hosted by Jon Krohn of the Jon Krohn YouTube channel and Super Data Science podcast, and Edward Donner, co-founder and CTO of Nebula.
The video dives into the definition, design principles, and development of AI agents, emphasizing the unprecedented opportunity to derive business value from AI applications using agentic workflows in 2025 and beyond. It covers a range of frameworks and practical applications, showcasing how large language model (LLM) outputs can control complex workflows and achieve autonomy in tasks. The instructors highlight the rapid advancements in LLM capabilities and the potential for agentic systems to augment or fully automate business processes.
The workshop emphasizes the hands-on nature of the content, with an accompanying GitHub repository with all the code for viewers to replicate and experiment with. The instructors frequently stress the rapid evolution of the field and the importance of starting small with agentic projects to ensure success.
# What’s Covered?
Here are the more specific topics covered in the video:
- Defining Agents: The video defines AI agents as programs where LLM outputs control complex workflows, emphasizing autonomy and distinguishing between simpler predefined workflows and dynamic agents proper.
- The Case for Agentic AI: It highlights the unprecedented opportunity in 2025 to derive business value from agentic workflows, noting the rapid improvement of LLMs and their dramatic impact on benchmarks like Humanity’s Last Exam (HLE) when used within agentic frameworks.
- Foundational Elements: Core concepts such as tools (enabling LLMs to perform actions) are explained, alongside inherent risks like unpredictability and cost, and strategies for monitoring and guardrails to mitigate them.
- Implications of Agentic AI: The workshop also addresses the implications of Agentic AI, including workforce changes and strategies for future-proofing careers in data science, emphasizing skills like multi-agent orchestration and foundational knowledge.
Agentic AI frameworks, the tools of the agentic revolution, covered include:
- Model Context Protocol (MCP): an open-source standard protocol for connecting agents with data sources and tools, often likened to a ‘USBC for agentic applications’
- OpenAI Agents SDK: a lightweight, simple, and flexible framework, used for deep research
- CrewAI: a heavier-weight framework specifically designed for multi-agent systems
- More complex frameworks like LangGraph and Microsoft Autogen are also mentioned
Finally, the hands-on coding exercises in the video include:
- Practical demonstrations include recreating OpenAI’s Deep Research functionality using the OpenAI Agents SDK, showcasing how agents can perform web searches and generate reports
- Discussions on design principles for agentic systems cover five workflow design patterns: Prompt Chaining, Routing, Parallelization, Orchestrator Worker, and Evaluator Optimizer
- Building an autonomous software engineering team with CrewAI is demonstrated, where agents collaborate to write and test Python code and even generate a user interface, highlighting CrewAI’s ‘batteries included’ features for safe code execution
- The final project involves developing autonomous traders using MCP, demonstrating how agents can access real-time market data, leverage persistent knowledge graphs, and perform web searches to make simulated trading decisions
# Expected Takeaways
After watching this video, viewers will be able to:
- Grasp the fundamental concepts of AI agents, including their definition, core components like tools and autonomy, and the distinction between constrained workflows and dynamic agent systems.
- Implement agentic systems using popular frameworks such as those from OpenAI and CrewAI, gaining hands-on experience in setting up multi-agent collaborations and leveraging their unique features, like structured outputs or automated code execution.
- Understand and apply the Model Context Protocol (MCP) for seamless integration of diverse tools and resources into agentic applications, including the ability to create simple custom MCP servers.
- Develop practical agentic applications, as demonstrated by the recreation of deep research functionality and the construction of an autonomous software engineering team and simulated trading agents.
- Recognize and mitigate risks associated with deploying agentic systems, such as unpredictability and cost management, through monitoring and guardrails.
If you’re looking for a resource to straighten out agentic AI for you and show you how you can leverage the burgeoning technology in your AI engineering exploits for this year and beyond, check out this great video by Jon Krohn and Edward Donner.
Matthew Mayo (@mattmayo13) holds a master’s degree in computer science and a graduate diploma in data mining. As managing editor of KDnuggets & Statology, and contributing editor at Machine Learning Mastery, Matthew aims to make complex data science concepts accessible. His professional interests include natural language processing, language models, machine learning algorithms, and exploring emerging AI. He is driven by a mission to democratize knowledge in the data science community. Matthew has been coding since he was 6 years old.
-
Events & Conferences3 months ago
Journey to 1000 models: Scaling Instagram’s recommendation system
-
Funding & Business1 month ago
Kayak and Expedia race to build AI travel agents that turn social posts into itineraries
-
Jobs & Careers1 month ago
Mumbai-based Perplexity Alternative Has 60k+ Users Without Funding
-
Education1 month ago
VEX Robotics launches AI-powered classroom robotics system
-
Education1 month ago
AERDF highlights the latest PreK-12 discoveries and inventions
-
Mergers & Acquisitions1 month ago
Donald Trump suggests US government review subsidies to Elon Musk’s companies
-
Jobs & Careers1 month ago
Astrophel Aerospace Raises ₹6.84 Crore to Build Reusable Launch Vehicle
-
Podcasts & Talks1 month ago
Happy 4th of July! 🎆 Made with Veo 3 in Gemini
-
Podcasts & Talks1 month ago
OpenAI 🤝 @teamganassi
-
Jobs & Careers1 month ago
Telangana Launches TGDeX—India’s First State‑Led AI Public Infrastructure