Register and share your invite link to earn from video plays and referrals.

Search results for OpenSourceAI
OpenSourceAI community
One keyword maps to one global community path.
Create community
People
Not Found
Tweets including OpenSourceAI
📢 Official Announcement: Qwen Partners with Fireworks AI to Accelerate Access to Qwen Family Models We are pleased to announce a strategic partnership between Qwen and Fireworks AI to deliver optimized, production-ready deployment of Qwen's closed weights models via the Fireworks Platform. @FireworksAI_HQ This collaboration empowers developers and enterprises to: ✅ Deploy Qwen models with lower latency and reduced fine tuning and inference costs ✅ Leverage enterprise-grade reliability, security, and scalability ✅ Integrate seamlessly into modern AI workflows 🔹 Get started with Qwen on Fireworks: #Qwen# #FireworksAI# #OpenSourceAI# #LLM# #AIInfrastructure# #ResponsibleAI# #DeveloperCommunity#
Show more
We’re excited to welcome Mooncake to the PyTorch Ecosystem! Mooncake is designed to solve the “memory wall” in LLM serving. By integrating Mooncake’s high performance KVCache transfer and storage capabilities with PyTorch native inference engines like SGLang, vLLM, and TensorRT-LLM, it unlocks new levels of throughput and scalability for large language model deployments. Mooncake enables prefill decode disaggregation, global KVCache reuse, elastic expert parallelism, and serves as a fault tolerant PyTorch distributed backend. 🔗 #PyTorch# #OpenSourceAI# #LLM# #AIInfrastructure#
Show more
When AI Automates the Craft You Loved DeepSeek engineer Liu Shengyu’s viral article, "I Had to Bury My Talent in Yesterday", is not simply about losing a job. It captures something more personal: AI may preserve an expert’s value while taking away the part of the work that gave it meaning. Zhihu contributor BBuf sees a warning about craftsmanship, how expertise is formed, and who controls frontier intelligence. 1️⃣ From craftsperson to machine operator Kernel optimization was deeply hands-on. Engineers learned Hopper and Blackwell, arranged shared memory, tuned warps, inspected PTX and SASS, then profiled repeatedly to push throughput higher. The process itself was rewarding. But the role is shifting from weaving the sweater to supervising the knitting machine. Experience still matters. Experts know which designs and failure modes to watch. Yet the activity they loved is no longer what production demands. 2️⃣ Kernels are ideal work for agents An agent can read CUDA, PTX, and SASS, identify stalls, propose an optimization, compile it, run benchmarks, fail, and try again. A human explores only a few paths at once. Fast models paired with tens or hundreds of agents can search far more broadly. BBuf’s conclusion is blunt: whenever work supports repeated, meaningful trial and error, humans may struggle to compete. The same pattern could extend from kernels to algorithms and mathematics. 3️⃣ The expertise paradox If beginners let AI write everything from day one, where will senior judgment come from? Experienced engineers may remain better at directing agents because they understand hardware and hidden trade-offs. But the traditional path for acquiring that intuition may disappear as the underlying craft is automated. The risk is not only fewer jobs. It is losing the apprenticeship process that once created experts. 4️⃣ Intelligence is also a distribution problem If frontier models become the main engine of technical work, who controls the compute behind them? Open weights do not mean everyone possesses frontier intelligence. BBuf argues that unequal access to compute could become unequal access to effective intelligence. The open-versus-closed debate is not merely about licenses. It is also about who can afford to use powerful intelligence at scale. ✅ What may be buried AI may not eliminate experts first. It may turn them into supervisors of systems that perform the craft they once loved. The harder question is whether we can preserve human judgment and the joy of making things while embracing tools that are faster than us. 🔗 Full analysis: #DeepSeek# #CUDA# #AIInfra# #AIAgents# #FutureOfWork# #OpenSourceAI#
Show more
🔍 A DeepSeek Harness Plugin That Lets AI Explain the Agent's Own Trace Less than two weeks after DeepSeek Harness entered developer preview, its plugin ecosystem is already taking shape. Zhihu contributor 刘琦 built DSH Trace Insight, a focused plugin for one of the most important but overlooked parts of Agent engineering: understanding what an Agent actually did. 1️⃣ DeepSeek Harness exposes the process Many Agent harnesses behave like black boxes. Users provide a task, wait, and eventually receive an answer. DeepSeek Harness is different. Its trace records tool calls, execution steps, failures, retries, and other intermediate activity. This makes the Agent more transparent, but the raw trace is stored as a large JSONL file. Even with filtering, it is difficult for a human to read and reconstruct the full process. The author's idea was straightforward: If the trace is too complicated for humans, let another AI interpret it. 2️⃣ Turn raw traces into readable analysis DSH Trace Insight adds a side panel that asks an AI model to explain the running trace. It can summarize: 🔹 What the Agent is doing 🔹 Which methods and tools it used 🔹 Where errors or retries occurred 🔹 Whether any risky actions appeared 🔹 What lessons can be extracted from the run Instead of waiting beside an opaque progress indicator, users can inspect how the task is progressing, whether the approach is working, and how risky the current behavior looks. The goal is not to add another capability to the executing Agent. It is to add an interpretability layer around the Agent's behavior. 3️⃣ Use two models for cross-checking When a suspicious step appears, the plugin can send the same trace to two different AI models and compare their analyses. This is useful because trace interpretation is still a model-generated judgment. A second model can expose disagreements, missed risks, or different readings of the same tool call. The plugin can also organize detected issues into a compact list for manual review. That creates a useful three-layer workflow: Agent execution → AI trace analysis → human review It is a lightweight approach to Agent observability without requiring users to inspect thousands of raw log lines. 4️⃣ Installation is intentionally simple The plugin is open source under the MIT license: Users can ask their Agent to install it directly with: Please install this DSH plugin: The current version is designed for the native DeepSeek Harness Web UI. Using it inside third-party desktop wrappers may require additional development, since those clients may package or modify the original Web UI differently. 5️⃣ DeepSeek Harness can become a model worker behind Codex The author also suggests an interesting setup for people who do not use DeepSeek Harness as their primary Agent interface. Open the native DSH Web UI inside Codex's browser. Codex remains the main harness, while it operates DeepSeek Harness and the models connected to it. This creates a layered workflow: 🔹 Codex handles planning and orchestration. 🔹 Lower-cost non-GPT models inside DSH perform lightweight tasks or code inspection. 🔹 DSH Trace Insight exposes how those models executed the work. 🔹 Codex can discuss the results with DSH across multiple rounds, then send the final conclusion to another strong model for an additional review. Compared with assigning every subtask to an expensive model, this setup can reduce cost. Compared with calling another CLI tool blindly, it provides much better visibility into execution. ✅ The real value is observability DSH Trace Insight does one thing: it translates an Agent's raw execution history into something humans can understand. That simplicity is its strength. As Agents begin running longer tasks with more tools and greater autonomy, the important question is no longer just whether they produced the correct answer. We also need to know how they reached it, what failed along the way, and whether they crossed any risky boundaries. 🔗 Full Reading: #DeepSeek# #DeepSeekHarness# #AIAgents# #AgentObservability# #OpenSourceAI# #AIEngineering#
Show more
🧩 Kimi K3’s MoE and Attention Are Built Around Trade-offs, Not Tricks Kimi K3’s open release has drawn attention to its scale. But its architecture tells a more useful story: the hardest part of scaling is keeping quality, efficiency, and stability in balance. Zhihu contributor 苏剑林 @Jianlin_S explains the design logic behind two core components: Stable LatentMoE and K3’s hybrid attention. At a high level: K3 = KDA + MLA + Stable LatentMoE + AttnRes 1️⃣ Stable LatentMoE: more experts at similar cost LatentMoE compresses each token into a smaller latent space before routing it to experts, then projects the result back to the full hidden dimension. This reduces expert computation and communication. The saved budget can support more, narrower experts without greatly increasing training or inference cost. But the longer projection chain also magnifies numerical instability. K3 introduces three fixes. 🔹 SiTU-GLU softly caps extreme activations in both branches of the expert network. Compared with hard clipping, soft capping preserves smoother optimization. 🔹 RMSNorm is placed before the final up-projection. It stabilizes training and helps balance routed experts against shared experts. 🔹 Quantile Balancing replaces the previous load-balancing update, which became unreliable as the expert pool grew. It approximates global routing quantiles with histograms, allowing efficient aggregation across machines. The broader lesson is clear: scaling MoE is not just about adding experts. Routing, activation ranges, normalization, and distributed communication must scale with them. 2️⃣ Why K3 still uses MLA Some newer models have moved away from MLA, partly because speculative decoding changes the inference trade-off. MLA keeps KV Cache small and remains highly competitive under fixed training and memory budgets. But its decoding path is relatively compute-heavy, leaving less room for Multi-Token Prediction to trade extra computation for speed. Other attention designs simply move the bottleneck: 🔹 Smaller designs may reduce computation but lose quality or require a larger KV Cache. 🔹 Larger designs can recover quality, but increase training and prefill costs. An ideal replacement would preserve quality, reduce KV Cache, lower decoding compute, and cost no more during training or prefill. No simple design currently satisfies all four conditions. K3 therefore keeps MLA and combines it with KDA. The linear-attention layers handle most long-context processing efficiently, while MLA preserves full-attention capacity where it matters. 3️⃣ “Abandoning MLA” is not so simple Architectures that appear to replace MLA may still retain its core intuition. For example, a wide MQA design with shared K and V resembles MLA’s decoding form. Sparsity and compression can then reduce its compute and cache costs. This can work, but it introduces more infrastructure complexity. So the current debate is less about whether MLA is obsolete. It is about which combination of full, linear, sparse, and compressed attention offers the best system-level trade-off. 4️⃣ Why K3 can remove RoPE K3 removes RoPE from its MLA layers. That would hurt a pure-MLA model. But K3 is a hybrid of KDA and MLA. KDA’s DeltaNet-style updates already introduce an implicit positional transformation. In this sense, KDA provides something similar to a generalized form of RoPE for the full network. Adding explicit RoPE back produced little difference, so K3 followed the simpler design. K3 is not truly position-free. Its positional structure is partly carried by KDA instead of an explicit embedding. ⚙ The real architecture lesson None of these choices is especially flashy in isolation. Stable LatentMoE controls the numerical and routing problems created by more experts. KDA and MLA divide long-context work according to their strengths. NoPE removes a redundant component only after the hybrid architecture makes it unnecessary. K3’s main design principle is therefore not novelty for its own sake. Every architectural change must justify itself across quality, efficiency, and stability. 🔗 Full reading: 📖Blog post: #KimiK3# #MoE# #Attention# #LLM# #AIInfra# #OpenSourceAI#
Show more
Day 2 is done, and that’s a wrap on #PyTorchConferenceEU# 🇫🇷🔥 A great close to two excellent days at Station F: deep technical content, practical engineering, open collaboration, and an ecosystem with real momentum. This morning I had the chance to deliver the @PyTorch Foundation CTO keynote, focused on ecosystem growth, new working groups, certification, and what it takes to make open source AI easier to build, govern, and scale (OpenMVG). Big Day 2 announcement 🚨 @HuggingFace Safetensors is joining the PyTorch Foundation as a hosted project. That is a meaningful step forward for secure model distribution and trusted AI deployment. (PyTorch) Also great to see keynotes and sessions featuring: • Léonard Hussenot from @GoogleDeepMind's compelling talk on Gemma 4 Edward Yang (@Meta) on PyTorch updates • @LysandreJik (@huggingface) on the Hub as infrastructure and safe, performant model distribution • an outstanding mix of speakers and contributors from @AMD, @RedHat, @NVIDIA, @Google, @IBM, and @LightningAI (PyTorch Conference 2026) Thank you to everyone who made the first PyTorch Conference Europe such a strong debut. The ecosystem is growing. The Foundation is growing. And the community is building what’s next. 🚀 #PyTorch# #OpenSourceAI# #Safetensors# #huggingface#
Show more
🧩 DeepSeek and OpenAI Open-Sourced Their Harnesses. The Runtime May Become the Next AI Platform DeepSeek Harness and OpenAI's Codex harness are now open source. But the larger story is not simply that two more repositories became public. Zhihu contributor 第欧根尼 argues that Agent products are beginning to unbundle. The future may be less about choosing one monolithic Agent app and more about assembling a runtime, model router, scenario-specific distribution, and trusted plugin stack. 1️⃣ A harness is becoming part of the model The author's first hypothesis is that a harness will no longer be just a frontend that exposes model capabilities. It will become a framework that co-evolves with the model. The same model may perform very differently inside its official harness than inside a third-party implementation. Context management, tool descriptions, task decomposition, verification, and retry policies all influence the model's behavior. This leads to an important conclusion: A model and its Agent loop can produce better results together than the model can deliver on its own. The competitive unit is therefore shifting from the model alone to the model-harness system. 2️⃣ Agents are becoming lighter and more distributed The author's second observation comes from the evolution of MCP, Cloudflare's Agent infrastructure, and the growing demand for programmable workflows. He expects Agents to become: 🔹 Smaller and more specialized 🔹 Easier to customize through code 🔹 More independent from monolithic apps 🔹 Numerous enough to run as lightweight background workers Current products such as Kimi Work or WorkBuddy still control much of their unique behavior internally. Users cannot easily modify them or embed their complete workflows inside an enterprise system. But market demand is moving toward more flexible forms: plugins lighter than standalone apps, Code Mode more powerful than static skills, and large numbers of low-overhead Agents running simultaneously. That helps explain why vendors are opening their harnesses now. 3️⃣ The harness becomes a microkernel DeepSeek Harness treats the harness as something closer to a microkernel plus a distribution. The base runtime becomes thinner. It retains only the functions every Agent needs: 🔹 Plugin loading and lifecycle management 🔹 Event routing 🔹 Permissions and state 🔹 Execution protocols 🔹 Session and context infrastructure Research, coding, office work, and customer service are then assembled through different plugin bundles. The author sees OpenAI's Codex harness moving in a broadly similar direction, even if it uses different terminology. In this model, users may stop choosing a single Agent product. Instead, they choose: runtime + model routing + scenario distribution + organization plugins DeepSeek Harness and Codex become open runtimes on which many different Agent products can be built. 4️⃣ Five changes follow from this architecture 🔹 Plugin count stops being meaningful Prompts, skills, MCP services, and harness plugins can multiply quickly. The difficult problem will not be finding more plugins, but deciding which ones are trustworthy. Security review, provenance, compatibility, maintenance, and permission control become the real barriers. 🔹 Models become replaceable execution resources If context and data remain inside the harness, the runtime can route different tasks to different models. A strong model may handle planning and review, while cheaper models perform repetitive execution. Switching models becomes a runtime decision rather than a full migration. 🔹 The Agent Loop becomes the main optimization target As model capabilities converge, user experience may depend more on the surrounding loop: When should context be compressed? When should a task be split? What should be remembered? How should results be verified? Improving these decisions may create more value than replacing the underlying model. Models trained to cooperate with a particular harness could gain a significant advantage. 🔹 Skills, MCP, and plugins form a compatibility layer The market is unlikely to accept a different extension format for every platform forever. Competition will shift from “does this platform support plugins?” to “how many ecosystems can it support without degrading the experience?” 🔹 Personal runtimes separate from enterprise control planes Individuals need flexible local Agents. Enterprises need governance, private marketplaces, permission policies, observability, and integration management. These will become distinct product layers, even when they share the same open runtime. 5️⃣ Existing Agent products will defend through ecosystems The author expects products such as WorkBuddy to expose compatibility layers without fully opening their core runtime. They may quickly announce support for DeepSeek Harness plugins, Agent Skills, and more MCP services. But these capabilities would likely enter through adapters rather than replace the underlying harness. They may also build private enterprise plugin marketplaces. The more open the ecosystem becomes, the more companies need vendors that can absorb integration and security risks. Distribution remains another moat. WorkBuddy can connect deeply with WeChat, WeCom, and Tencent Docs. An open harness may reproduce its plugins, but it cannot quickly reproduce users' work relationships and established business entry points. Alibaba has a different advantage. The author expects it to use Alibaba Cloud and Bailian to provide a managed harness control plane, turning cloud infrastructure into the runtime layer for enterprise Agents. 6️⃣ This looks like the Android/AOSP moment for Agents The current market resembles the early Android ecosystem. An open foundation can stop hundreds of teams from rebuilding the same runtime. But publishing reference code is not enough to create an Android-scale platform. The next six months may decide whether these projects converge into a durable ecosystem. They need stable interfaces, trusted plugin infrastructure, and vertical software teams willing to maintain real products on top of the open runtimes. The decisive question is not whether DeepSeek or OpenAI has released the better harness today. It is whether the industry can turn open harnesses into a shared Agent platform, rather than another collection of incompatible reference implementations. 🔗 Full analysis: #DeepSeekHarness# #OpenAI# #Codex# #AIAgents# #AgentInfrastructure# #MCP# #OpenSourceAI#
Show more
Anthropic hates Opensource AI because a model like GLM 5.2 being available for feee to download made their $1 Trillion valuation sound like a joke (which it is btw)
0
53
1.3K
96
Forward to community
The Library of Alexandria and Opensource AI Think for a moment about what the world might look like if humanity’s greatest collections of knowledge had never been lost AI is an engine for knowledge and discovery, and it should not live behind the walls of a handful of corporations Models should be open. Weights should be preserved. Knowledge should be distributed. Humanity should never have another Library of Alexandria
Show more
It is now clear that for Opensource AI to win Anthropic has to lose. Coexisting is no longer an option in my honest opinion when you’re acting with a cult mindset like they do.