Workflow
工具使用
icon
Search documents
刚刚,OpenAI想收购的Windsurf,被谷歌DeepMind抢走了核心团队
机器之心· 2025-07-12 02:11
Core Viewpoint - Google DeepMind has successfully acquired Windsurf, a coding startup that OpenAI intended to purchase for $3 billion, marking a significant shift in the competitive landscape of AI development [1][4][5]. Group 1: Acquisition Details - Google DeepMind announced the acquisition of Windsurf, welcoming its CEO Varun Mohan and co-founder Douglas Chen, along with key team members, to focus on the Gemini project [2][3]. - The specific financial terms of the acquisition have not been disclosed, but prior reports indicated that OpenAI was prepared to spend $3 billion on Windsurf [4][5]. - Windsurf, originally founded in 2021 as Codeium, had recently rebranded before the acquisition [6]. Group 2: Implications for OpenAI - OpenAI's attempt to acquire Windsurf fell through as the exclusivity period of their $3 billion deal expired, allowing Windsurf to explore other options [5]. - This acquisition represents another setback for OpenAI, which has faced multiple challenges recently [8][9]. Group 3: Windsurf's Future - Despite the acquisition, Windsurf will continue to operate as an independent company, with Google obtaining non-exclusive rights to some of its technology [16]. - The remaining Windsurf team will be led by Jeff Wang as interim CEO and Graham Moreno as the new president, following the departure of key personnel to Google [19][20]. - Concerns have been raised regarding the future of Windsurf after losing its core team, highlighting the ongoing talent competition in the AI industry [21].
315 行代码构建编程助手,Go大佬揭开智能体的「神秘面纱」
机器之心· 2025-05-03 04:18
选自 ampcode.com 作者:Thorsten Ball 机器之心编译 首先准备好我们的「文具」: 铅笔出场!让我们直接开始,用四个简单的命令来设置一个新的 Go 项目: 知名 Go 大佬 Thorsten Ball 最近用 315 行代码构建了一个编程智能体,并表示「它运行得非常好」且「没有护城河」(指它并非难以复制)。 Thorsten Ball 在编程领域以其对系统编程和编程语言的深入研究而闻名,尤其擅长解释器、编译器和虚拟机等主题。他撰写的《用 Go 语言自制编译器》和《用 Go 语言自制解释器》则被视为编译原理领域的「入门平替」。 虽然这个编程智能体无法和 Claude、Gemini 等推出的编码功能相媲美,却为初学者提供了一个探索智能体的良好学习范例。这反映了他一贯的理念:通过实践和 开源项目揭开技术的「神秘面纱」。 Thorsten Ball 在博客中分享了他的具体操作步骤。(注:本文中的代码截图可能并不完整,详细内容请参阅原博客。) 博客地址:https://ampcode.com/how-to-build-an-agent 乍看之下,智能体编辑文件、运行命令、自行解决错误似乎很复杂,但 ...