OpenAI, the company behind ChatGPT, is developing a new project called "Strawberry" to enhance the reasoning abilities of its AI models. This information comes from an insider and documents reviewed by Reuters. The project is still in progress and its launch date remains unclear.
Strawberry is designed to help OpenAI’s models not just answer questions, but also autonomously navigate the internet to conduct what OpenAI calls "deep research." This level of advanced reasoning is something current AI models struggle with.
According to an internal OpenAI document from May, the company aims for Strawberry to significantly improve its AI’s ability to understand and plan tasks, much like humans. However, the specifics of how Strawberry works are kept confidential, even within the company.
A spokesperson from OpenAI confirmed that continuous research is key to improving AI, but did not provide specific details about Strawberry.
Previously known as Q*, Strawberry has shown promise in internal demos by answering complex science and math questions that current models can't handle. During a recent company meeting, OpenAI demonstrated a project with new reasoning skills, though it's unclear if this was Strawberry.
Strawberry involves a special method of processing AI models after they've been initially trained on large datasets. This post-training, similar to a technique called "Self-Taught Reasoner" (STaR) developed at Stanford, allows models to improve their intelligence by generating their own training data.
One of Strawberry’s goals is to handle long-term tasks that require planning and multiple steps. OpenAI is testing these capabilities with a "deep-research" dataset and aims to have its models perform tasks autonomously on the internet, guided by a "computer-using agent."
This project is part of OpenAI's broader effort to advance AI reasoning, a critical step toward achieving human or super-human level intelligence. Other companies like Google, Meta, and Microsoft are also working on similar advancements.
As part of the National Supercomputing Mission (NSM), the Telangana government is asking the Ministry of Electronics and Information Technology (MeitY) to set up a supercomputing facility with a 20 petaflop capacity in Hyderabad's projected Artificial Intelligence (AI) metropolis.
Supercomputer performance is measured in petaflops, which are units of one quadrillion (or 20,000 trillion) floating point operations per second. The NSM plans to build and operate 24 supercomputers with a total power of more than 64 petaflops throughout India.
Telangana's IT secretary, Jayesh Ranjan, said, "We have asked MeitY to set up this facility in Hyderabad's AI city. We are willing to donate the land required for this use. The amount of processing capacity available directly affects how far AI can advance. The Development Center of Advanced Computing (CDAC), a body under MeitY, has expressed interest in the project.
With a total capacity of more than 20 petaflops, CDAC has already deployed 11 systems under the first two stages of NSM at a number of institutions, including IISc, IITs, IISER Pune, JNCASR, NABI-Mohali, and CDAC itself. Magesh Ethirajan, the director general of CDAC, was not available for comment.
Telangana AI Mission (T-AIM) and CDAC inked a Memorandum of Understanding (MoU) in April of last year to give 142 AI entrepreneurs backed by T-AIM's Revv Up accelerator program access to reasonably priced high-performance AI computing. For a brief while, these businesses may utilize free access to India's most potent AI supercomputing facility, which offers 410 AI petaflops. These capabilities are available to startups for around one-third the price of private cloud services.
In line with the IndiaAI Mission, Ranjan stressed that Telangana's IT ministry will formally ask the union IT ministry for assistance in establishing the AI city. He said, "We will be meeting with ministers from the Government of India in Delhi to discuss this plan."
About 30 to 50 percent of the 200 acres that make up the proposed AI city would be left aside for businesses to establish AI centers. The remaining acreage will be developed into commercial spaces and computing facilities, which will be rented out to AI-focused businesses in exchange for internet, electricity, and rent subsidies.
Talks on establishing data centers in the AI city have also started with private businesses like Yotta, a data center service provider affiliated with the Hiranandani Group, and Intel, which runs more than 100,000 servers worldwide. Ranjan clarified, "We will permit them to set up their data centers for AI computing, including hosting graphics processing units (GPUs). "An R&D and incubation facility for agencies interested in AI research, development, and innovation is something else we plan to set up."
The AI city will also have a skilling center that will offer training for fundamental AI activities like data purification and annotation, as well as PhD-level education in AI. "Our goal is to create an all-encompassing environment for the advancement of AI," stated Ranjan.
Angular recently launched Angular 18, which brings several new features, including zoneless change detection, a new developer hub, and improved server-side rendering. This version focuses on stabilizing new APIs, responding to developer requests, and enhancing the developer experience.
Angular 18 now supports zoneless change detection experimentally, removing the need for zone.js. This aims to improve performance by reducing change detection cycles and providing clearer stack traces. Developers can try this new feature by adding a provider to their application bootstrap:
bootstrapApplication(App, {
providers: [
provideExperimentalZonelessChangeDetection()
]
});
Alex Rickabaugh, a senior software engineer at Google, expressed the importance of zoneless support in Angular 18, emphasizing the balance between maintaining stability and evolving with the modern web.
The official Angular documentation site, angular.dev, now includes a hands-on getting started guide, interactive playgrounds, updated guides, and easier navigation. All requests to angular.io now redirect to angular.dev.
Several features have become stable in Angular 18. Material 3 components are now stable, offering new themes and documentation. Deferrable views, which help improve Core Web Vitals, are now stable and allow developers to delay the loading of certain views. The new built-in control flow syntax also reaches stability, offering better performance and usability.
Server-side rendering (SSR) in Angular 18 is improved with i18n hydration support, enhanced debugging, and event replay using Google's event dispatch library. These improvements ensure a better and more interactive SSR experience.
Angular 18 allows developers to specify default content for ng-content
, providing fallback content in their components. For example:
@Component({
selector: 'app-profile',
template: `
Hello
Unknown user
`,
})
export class Profile {}
Using the component:
<app-profile>
<span class="greeting">Good morning </span>
</app-profile>
The output will be:
<span class="greeting">Good morning </span>
Unknown user
Angular forms now have an events
property, allowing developers to subscribe to a stream of events for form controls. For example:
const nameControl = new FormControl('name', Validators.required);
nameControl.events.subscribe(event => {
// Process individual events
});
Angular 18 also provides more flexibility with route redirects by allowing functions to return dynamic redirect routes. For example:
const routes: Routes = [
{ path: "first-component", component: FirstComponent },
{
path: "old-user-page",
redirectTo: ({ queryParams }) => {
const errorHandler = inject(ErrorHandler);
const userIdParam = queryParams['userId'];
if (userIdParam !== undefined) {
return `/user/${userIdParam}`;
} else {
errorHandler.handleError(new Error('Attempted navigation to user page without user ID.'));
return `/not-found`;
}
},
},
{ path: "user/:userId", component: OtherComponent },
];
Lastly, TypeScript 5.4 is updated by Angular 18 to enable developers to utilize the newest TypeScript capabilities and enhancements.
Microsoft's deal with OpenAI and Google's partnership with Samsung are under EU antitrust scrutiny, focusing on exclusivity clauses. EU competition chief Margrethe Vestager announced further inquiries to gather opinions from third parties.
These investigations reflect global regulatory concerns about Big Tech extending their influence into AI, similar to their dominance in other markets. In March, Vestager sent inquiries to major tech firms, including Microsoft, Google, Meta, and ByteDance, about their AI collaborations.
"We're reviewing responses and will follow up on Microsoft's agreement with OpenAI to see if exclusivity could harm competition," Vestager said at a conference. Reuters highlighted the potential for a formal investigation.
A Microsoft representative stated they are prepared to answer any additional questions from the European Commission. Vestager clarified that their partnership wouldn't fall under EU merger rules due to a lack of control, even though Microsoft has invested $13 billion in a for-profit OpenAI subsidiary for a 49% stake.
Vestager also expressed concern about large tech companies hindering smaller AI developers from accessing the market. Additionally, she mentioned Google's deal with Samsung to pre-install its Gemini Nano AI model on Galaxy S24 phones, which prompted further information requests.
Vestager is also examining "acqui-hires," where companies acquire others mainly for their talent, such as Microsoft's $650-million acquisition of startup Inflection. She emphasized ensuring that such practices don't bypass merger control rules if they lead to market concentration.