# 75 - OpenAI Appeals to the US Government: Competitive Concerns Over DeepSeek

Published on

A few days ago, OpenAI submitted a fifteen-page memorandum to the U.S. government, elevating the competitive threat posed by DeepSeek to a national security concern and attempting to frame it as ideological competition. This submission was OpenAI’s feedback to the White House Office of Science and Technology Policy (OSTP) regarding the publicly solicited Artificial Intelligence Action Plan.

I have never denied the importance of intellectual property rights, nor do I overlook the potential national security risks associated with national-level AI competition. However, for younger companies that have not yet established sufficient credibility regarding intellectual property, actively seeking policy protections might inadvertently weaken their innovative spirit and constrain their long-term growth.

Over the past two years, OpenAI and similar companies have consistently promoted the narrative that building leading large-scale AI models requires enormous financial resources and supercomputing power, setting extremely high barriers that ordinary players cannot overcome. Leveraging this narrative and their early-mover advantage, OpenAI has achieved remarkable valuation and continuously attracted significant investment. However, the emergence of DeepSeek (not the first, nor will it be the last) has disrupted this entrenched perception, prompting more countries, enterprises, and individuals to reconsider the feasibility of entering the large-scale AI arena.

The achievements in today’s AI industry, especially in large language models, are the result of collective efforts and the open sharing of numerous researchers and enterprises. As a company benefiting from the open-source community and actively sharing its own research findings and technical details, DeepSeek has given back to the community and contributed to lowering AI training and inference costs. Such open outcomes should benefit the entire society, including existing leading AI companies. However, as I pointed out in Issue 68 of my newsletter: “For major AI companies accustomed to high investments and large-scale resource allocation, it will undoubtedly be challenging to shift their mindset in the short term. Even if DeepSeek’s methods provide some inspiration, without fundamental changes in philosophy, these companies will struggle to achieve sustained and significant progress in reducing training costs.”

Perhaps OpenAI is currently trapped in this mindset transition dilemma. Realizing the difficulty of rapidly improving its cost structure, it has chosen more aggressive competitive methods, seeking external intervention to slow down its competitors. While this strategy might temporarily alleviate pressure from capital markets, it ultimately does not resolve the company’s underlying developmental bottlenecks.

The rise of AI is not only a significant technological shift in human history but also a commercial opportunity filled with challenges. As a promising industry with vast market potential, fierce competition is inevitable as countries and enterprises accelerate strategic positioning. As large-model technologies approach performance ceilings and differences in model capabilities narrow, offering distinctive application scenarios and cost-effective products will be critical factors determining market success. OpenAI may not have adopted an optimal competitive strategy—unless it candidly confronts and effectively addresses its structural issues, its true replacements in the future may not be DeepSeek, as claimed, but rather those domestic competitors currently behind but stronger in terms of cost-efficiency and unique application scenarios.

DeepSeek is just one among many new challengers reshaping the industry landscape, serving as evidence of the increasing feasibility for more participants to enter this “high-barrier” industry. Soon, we will likely witness similar DeepSeek-style breakthroughs emerging globally.

Since its inception, ChatGPT has attracted me through its inherent strengths and outstanding performance. I sincerely hope it continues to retain its users through continuous innovation and excellence, rather than relying on external measures like policy protections.

Original

Key Considerations Before Using SwiftData

At the recently concluded Let’s Vision 2025 conference, I received numerous questions about SwiftData: “Is SwiftData mature enough for real-world projects?” and “As a beginner, how can I effectively use SwiftData?” These questions reflect developers’ strong interest in Apple’s latest data persistence framework, but they also reveal some hesitation when making technical decisions. This article aims to serve as a guide for developers interested in SwiftData, helping you understand its advantages and limitations so you can make informed choices based on your project needs.

Recent Recommendations

Behind the Scenes of Async Functions

Swift Concurrency introduces a safer and more efficient asynchronous programming model, but do you truly understand how it works under the hood? In this article, Vitaly Batrakov provides an in-depth exploration of core concepts such as async/await, Tasks, Jobs, Executors, Actors, and the Cooperative Thread Pool. This article is ideal for developers with some concurrency experience, helping you build a clearer mental model of how Swift Concurrency operates.

When the Swift Compiler Deleted Code in Stdlib

Swift’s compiler optimizations are designed to improve performance, but sometimes they can go too far and introduce unexpected bugs. In this article, WeZZard shares a use-after-free crash case that occurred under the -Osize optimization level, where a critical piece of code was erroneously eliminated by the Swift compiler, leading to memory access issues. Fortunately, after thorough investigation, WeZZard submitted a Pull Request that has been successfully merged, fixing the issue. While this article delves into some advanced topics, if you’re interested in Swift compiler optimizations, SIL, and LLVM, it’s definitely worth a read!

Swift Testing Completion Handlers

In XCTest, we typically use XCTestExpectation to wait for asynchronous operations to complete. However, Swift Testing does not provide a direct equivalent to expectation. Instead, the recommended approach is to use continuations to convert completion handler-based asynchronous code into async/await. While this transition is straightforward for new test cases, migrating a large number of existing XCTest cases can be quite time-consuming. In this article, Keith Harrison shares an efficient migration strategy using withCheckedContinuation, streamlining the process and reducing redundant work to significantly improve productivity.

SwiftUI: Interactive Charts

Unlike many other charting frameworks, Swift Charts employs a declarative API, which may feel unintuitive when implementing interactive features. In this article, Itsuki provides a deep dive into the built-in interaction mechanisms of Swift Charts and explores how to leverage chartGesture(_:) for custom gestures, enabling more flexible and intuitive user interactions.

Under the Hood: SwiftUI

SwiftUI makes UI development more intuitive, but its black-box nature makes it difficult for developers to understand how it operates under the hood. In this article, Mihai Popa adopts an interview-style narrative to clearly and concisely explain key concepts such as SwiftUI’s declarative rendering architecture, state-driven updates, view diffing mechanisms, and its bridging with UIKit.

Browse No More

Once upon a time, browsing the internet was an adventure—clicking links, stumbling upon hidden gems, and discovering unique voices along the way. However, AI-powered answer engines such as ChatGPT, Perplexity, Grok, and Gemini are reshaping how we access information. While they provide instant and precise responses, they are also quietly diminishing our agency and reducing the diversity of the web. Instead of exploring freely, we are now guided by AI-selected answers, missing out on independent creators, niche communities, and fresh perspectives. In this article, Paul Stamatiou reflects on how this shift is affecting the internet ecosystem and explores how AI-driven personalization could help restore the joy of discovery.

Weekly Swift & SwiftUI highlights!