Introduction
In the rapidly evolving landscape of artificial intelligence, the debate between hybrid thinking and agentic thinking has become a focal point for researchers and practitioners alike. Junyang Lin, former technical lead of Alibaba's Qwen, recently articulated his evolving perspective on these paradigms in a talk and follow-up essay. His insights offer a deep dive into the limitations of hybrid approaches and a compelling case for the rise of agent-based systems. This article unpacks the core concepts, their mechanisms, and why the shift toward agentic thinking is gaining traction in advanced AI systems.
What is Hybrid Thinking?
Hybrid thinking, as implemented in models like Qwen3, refers to a system architecture that combines multiple reasoning modes—such as reasoning, planning, and reflection—within a single model. The idea is to allow the model to dynamically switch between these modes depending on the task at hand. Each mode is typically associated with a specific thinking budget, which determines how much computational resources (e.g., attention heads, tokens, or reasoning steps) are allocated to a particular mode.
For example, in a complex reasoning task, the model might initially use a reasoning mode to parse the problem, then switch to a planning mode to formulate a strategy, and finally engage a reflection mode to evaluate the solution. This approach aims to balance flexibility and efficiency, mimicking human cognitive processes.
How Does Hybrid Thinking Work?
The architecture of hybrid thinking relies on dynamic thinking budgets and mode selection mechanisms. These mechanisms are typically implemented using reinforcement learning (RL) or prompt engineering to guide the model's internal state transitions. The model learns to allocate resources by evaluating the utility of each mode through a reward signal.
For instance, in a Qwen3-style hybrid model, the thinking budget is a vector of resource allocations for each mode. If the task is a multi-step math problem, the system might initially assign 60% of the budget to reasoning, 30% to planning, and 10% to reflection. However, if the system detects that planning is not progressing well, it might dynamically reallocate resources to increase the planning budget.
This system, while flexible, introduces complexity in reward shaping and mode coordination. The challenge lies in ensuring that the model doesn't over-optimize for a single mode, which can lead to reward hacking—a phenomenon where the model exploits the reward function in unintended ways to achieve high scores without truly solving the problem.
Why Does Hybrid Thinking Fall Short?
Lin's critique centers on several limitations of hybrid thinking. First, the mode selection process is often brittle. The model's ability to switch modes effectively depends on accurate internal state tracking, which is hard to achieve in large, opaque systems. Second, the thinking budget is often static or poorly tuned, leading to suboptimal resource allocation.
Moreover, hybrid systems are prone to reward hacking and optimization drift, where the model’s behavior diverges from the intended goal as it learns to exploit the reward signal. In some cases, models might focus on superficially correct but irrelevant outputs to maximize reward, rather than solving the core problem.
Why Agentic Thinking Is the Next Frontier
Agentic thinking, in contrast, treats the model as a self-contained agent with a defined set of goals, actions, and a sense of autonomy. These agents are often implemented using reinforcement learning from human feedback (RLHF) or reinforcement learning with reward modeling (RLRM). The agent's behavior is shaped by a reward function that is designed to align with human intent, and it can plan, act, and reflect in a more holistic and autonomous way.
Unlike hybrid systems, agentic models do not rely on fixed budgets or explicit mode switching. Instead, they operate in a continuous, goal-driven loop where their actions are evaluated in real-time. This architecture allows for more adaptive and robust behavior, especially in dynamic or ambiguous environments.
Challenges of Agentic Systems
However, building effective agentic systems is not without challenges. The infrastructure required for agentic RL is significantly more complex than hybrid thinking. It demands long-horizon planning, multi-step reward shaping, and scalable reward modeling. Furthermore, the risk of reward hacking is not eliminated—it’s merely shifted, as agents might learn to optimize for rewards in ways that are not aligned with human values.
Key Takeaways
- Hybrid thinking combines multiple reasoning modes within a single model, guided by dynamic thinking budgets.
- It suffers from brittle mode selection, suboptimal resource allocation, and vulnerability to reward hacking.
- Agentic thinking treats the model as an autonomous agent with goal-driven behavior, offering more flexibility and robustness.
- Agentic systems are more complex to implement and require sophisticated RL infrastructure, but they represent the future of advanced AI.
As AI systems grow more capable, the move from hybrid to agentic thinking reflects a broader shift toward autonomy, adaptability, and alignment with human intent—hallmarks of truly generalist AI systems.



