<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: NotAlex</title>
    <description>The latest articles on DEV Community by NotAlex (@notalex1001).</description>
    <link>https://dev.to/notalex1001</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3968409%2F40a05ca0-d56b-4e61-bad2-f1e11114aa2b.jpg</url>
      <title>DEV Community: NotAlex</title>
      <link>https://dev.to/notalex1001</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/notalex1001"/>
    <language>en</language>
    <item>
      <title>What Is an Agent — One article to bring you understanding</title>
      <dc:creator>NotAlex</dc:creator>
      <pubDate>Tue, 09 Jun 2026 12:51:57 +0000</pubDate>
      <link>https://dev.to/notalex1001/what-is-an-agent-one-article-to-bring-you-understanding-1kfh</link>
      <guid>https://dev.to/notalex1001/what-is-an-agent-one-article-to-bring-you-understanding-1kfh</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;What is an Agent? An Agent is an AI that takes action on its own — you give it a goal, and it breaks the task down, calls tools, and gets the job done.&lt;/p&gt;

&lt;p&gt;The fundamental difference between an Agent and a Chatbot: a Chatbot is a passive "advisor" — you ask it how to cancel a flight, and it gives you the steps; an Agent is an active "doer" — you tell it to cancel the flight, and it does it for you, directly.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  So, What Exactly Is an Agent?
&lt;/h2&gt;

&lt;p&gt;Lilian Weng of OpenAI summed up the core of an Agent in one sentence — Agent = LLM + Planning + Memory + Tools. NVIDIA describes it as "an advanced AI system capable of reasoning, planning, and executing multi-step tasks." Anthropic's 2025 official research paper defines it as "a system in which the LLM dynamically takes the lead on its own workflow and tool calls."&lt;/p&gt;

&lt;p&gt;All of these definitions are really saying the same thing: the core of an Agent isn't conversation — it's action.&lt;/p&gt;

&lt;p&gt;An Agent runs on four capabilities:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reasoning&lt;/strong&gt; — the Agent's brain. Given a task like "analyze our company's Q1 sales data, find the fastest-growing product, and email a report to the team," the Agent breaks it down into steps on its own: connect to the database to pull Q1 data → calculate the growth rate of each product → generate a visualization → write the report email → send it to the team. Every step is reasoned in real time, not following a predefined path.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Memory&lt;/strong&gt; — the Agent's notebook. It comes in two types: short-term memory holds the context of the current conversation, while long-term memory uses a vector database to store historical experience, user preferences, and industry knowledge. Without memory, an Agent can't handle complex multi-session tasks — it's like a person with amnesia who can't complete work that spans multiple conversations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tools&lt;/strong&gt; — the Agent's hands and feet. Common tools include: search engines (for real-time information), code interpreters (running Python for math and data analysis), API interfaces (sending emails, looking up orders, calling ERP/CRM systems), databases (SQL queries and writes), and file systems (reading/writing documents, generating reports). Which tool to call, what parameters to use, and how to use the result — all of this is decided by the Agent itself based on the current task, not hard-coded.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Action&lt;/strong&gt; — the Agent's output. An LLM can only output text, but an Agent can actually change the external environment — send an email, update a database record, submit a code PR, cancel a flight order. Traditional AI: you ask it "how do I cancel my flight," and it replies with the steps. Agent: you say "cancel my flight," and it does it for you, directly.&lt;/p&gt;

&lt;p&gt;Gartner forecasts that by 2028, 33% of enterprise software will have Agentic AI built in, and 15% of daily work decisions will be made autonomously by Agents. 2026 is also being called "Year One of Enterprise Agents in the workforce" by the industry.&lt;/p&gt;

&lt;p&gt;Quick reference — the four core components:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Component&lt;/th&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Implementation&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Reasoning&lt;/td&gt;
&lt;td&gt;Break down tasks, plan steps&lt;/td&gt;
&lt;td&gt;Real-time LLM reasoning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory&lt;/td&gt;
&lt;td&gt;Store context and historical experience&lt;/td&gt;
&lt;td&gt;Short-term context + long-term vector store&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tools&lt;/td&gt;
&lt;td&gt;Call external capabilities&lt;/td&gt;
&lt;td&gt;API / database / code interpreter&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Action&lt;/td&gt;
&lt;td&gt;Change the external environment&lt;/td&gt;
&lt;td&gt;Email / database / UI operations&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  How to Build an Agent from Scratch?
&lt;/h2&gt;

&lt;p&gt;Three steps: pick a platform → define the Agent → run and iterate.&lt;/p&gt;

&lt;p&gt;Platform choice depends on your route. &lt;strong&gt;Developers go the code route&lt;/strong&gt; — &lt;a href="https://github.com/langchain-ai/langchain" rel="noopener noreferrer"&gt;LangChain&lt;/a&gt; / &lt;a href="https://github.com/langchain-ai/langgraph" rel="noopener noreferrer"&gt;LangGraph&lt;/a&gt; (the most mature ecosystem), &lt;a href="https://github.com/crewAIInc/crewAI" rel="noopener noreferrer"&gt;CrewAI&lt;/a&gt; / &lt;a href="https://github.com/microsoft/autogen" rel="noopener noreferrer"&gt;AutoGen&lt;/a&gt; (multi-Agent collaboration). &lt;strong&gt;Non-developers go the low-code route&lt;/strong&gt; — visual orchestration platforms like &lt;a href="https://github.com/Sh4r1ock/SoloEngine" rel="noopener noreferrer"&gt;SoloEngine&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Define the Agent around four things — &lt;strong&gt;Role&lt;/strong&gt; (e.g., "You are a cross-border e-commerce customer service Agent"), &lt;strong&gt;Goal&lt;/strong&gt; ("Handle customer order inquiries, refund requests, and logistics questions"), &lt;strong&gt;Tools&lt;/strong&gt; (connect to the order lookup API, refund interface, logistics tracking API, and FAQ knowledge base), and &lt;strong&gt;Constraints&lt;/strong&gt; ("Don't handle price negotiations; refund amounts must not exceed the order amount; flag any fraud risk for human review").&lt;/p&gt;

&lt;p&gt;Once running, the Agent loops autonomously: receive a task → reason and decide → call tools → produce output → observe feedback → improve the next round.&lt;/p&gt;

&lt;p&gt;For example, a user says, "Prepare next week's stock analysis report for me." The Agent's autonomous execution looks like this: fetch the latest stock prices and K-line data → pull the latest earnings reports and guidance → search industry news and analyst views → analyze the data and build visualizations → write a structured report and save it to the cloud. The whole flow takes just 2 minutes, while a Chatbot would just reply, "You should pay attention to the following..."&lt;/p&gt;




&lt;h2&gt;
  
  
  The Fundamental Difference Between Agents and Traditional Automation
&lt;/h2&gt;

&lt;p&gt;In one line: &lt;strong&gt;Agents make their own decisions. Traditional automation follows preset rules.&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Agent (Intelligent Agent)&lt;/th&gt;
&lt;th&gt;Traditional Automation (RPA/Chatbot)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Core logic&lt;/td&gt;
&lt;td&gt;Goal-driven (given a goal, plans its own path)&lt;/td&gt;
&lt;td&gt;Rule-driven (if-then preset rules)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Task type&lt;/td&gt;
&lt;td&gt;Open-ended, multi-step complex tasks&lt;/td&gt;
&lt;td&gt;Fixed-flow, repetitive tasks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Decision-making&lt;/td&gt;
&lt;td&gt;LLM reasons in real time, dynamic judgment&lt;/td&gt;
&lt;td&gt;Preset conditional branches, mechanical execution&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;When something unexpected happens&lt;/td&gt;
&lt;td&gt;Reflect + retry + adjust strategy&lt;/td&gt;
&lt;td&gt;Stuck, waits for human to restart&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tool calls&lt;/td&gt;
&lt;td&gt;Picks tools and call methods on its own&lt;/td&gt;
&lt;td&gt;Preset fixed call chain&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Take the flight-cancellation scenario for comparison. A user says, "Cancel my 8 AM flight to Beijing tomorrow." Traditional automation (RPA) replies, "You can cancel the order in the app" — it can only pass along information. The Agent directly operates the user's travel app — look up the flight → confirm the order → calculate the cancellation fee → execute the cancellation → send a confirmation SMS. One is a worker who follows a manual; the other is an employee who decides on their own. One gives you the path; the other walks it for you.&lt;/p&gt;

&lt;p&gt;In one line: traditional AI is an advisor — it just talks and gives suggestions. An Agent is an employee — it takes action and gets things done.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Learn Agent Development?
&lt;/h2&gt;

&lt;p&gt;Pick one of two routes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The code route&lt;/strong&gt;: Python + LangChain, for deep customization. Learn Python basics → learn API calls → learn Prompt Engineering → learn LangChain → learn LangGraph → learn CrewAI/AutoGen. Suited for developers and technical practitioners.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The low-code route&lt;/strong&gt;: SoloEngine's visual orchestration, pick it up the same day. Drag and drop Agent components onto the SoloEngine canvas → configure roles and tools in natural language → wire up how Agents collaborate → click run. No coding required — if you can describe what you need, you're set. A lawyer can define a "Contract Review Agent" to auto-review legal clauses; an accountant can define a "Report Analysis Agent" to auto-generate financial analysis; an operator can define a "Content Operations Agent" to auto-manage a social media portfolio.&lt;/p&gt;

&lt;p&gt;My recommendation: if you're a developer, start with the low-code platform to get quick wins and positive feedback, then move to the code route for deeper control — the two routes aren't opposites, they complement each other. If you don't code, go straight to the low-code route — SoloEngine lets non-coders define and run an AI Agent team.&lt;/p&gt;




&lt;h2&gt;
  
  
  Practical Advice
&lt;/h2&gt;

&lt;p&gt;Most people get stuck on an "either/or" choice, but in practice the two routes are often used together: use LangChain/LangGraph for deep custom development (fine-grained control, complex chained calls), and use SoloEngine for Agent orchestration, fast validation, and GUI (a complete runtime panel). The end goal isn't picking a framework — it's building an Agent system that actually solves your business problem.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>career</category>
    </item>
    <item>
      <title>From Vibe Coding to Vibe Everything: How Xiaomi SoloEngine Is Rewriting the Agent Playbook</title>
      <dc:creator>NotAlex</dc:creator>
      <pubDate>Tue, 09 Jun 2026 02:07:14 +0000</pubDate>
      <link>https://dev.to/notalex1001/from-vibe-coding-to-vibe-everything-how-xiaomi-soloengine-is-rewriting-the-agent-playbook-13eb</link>
      <guid>https://dev.to/notalex1001/from-vibe-coding-to-vibe-everything-how-xiaomi-soloengine-is-rewriting-the-agent-playbook-13eb</guid>
      <description>&lt;p&gt;In February 2025, Andrej Karpathy coined "Vibe Coding"—using natural language to direct AI to write code, forgetting that code even exists. That December, Collins Dictionary named it Word of the Year. In February 2026, Karpathy himself "retired" the concept, proposing Agentic Engineering instead—the evolution from "humans directing AI to write code" to "AI Agents autonomously completing the development loop."&lt;/p&gt;

&lt;p&gt;Vibe Coding changed how programmers work. Claude Code can handle requirement decomposition, code writing, testing, and deployment from a single terminal prompt. ByteDance's Trae, in its SOLO mode, lets AI develop autonomously while developers only need to review and approve.&lt;/p&gt;

&lt;p&gt;But Vibe Coding belongs only to programmers. Lawyers, marketers, and product managers also need Agentic AI to handle their business tasks—but they can't use Claude Code or Trae.&lt;/p&gt;

&lt;p&gt;Vibe Everything—people in every industry can use natural language to assemble AI Agent teams that autonomously handle business tasks. Lawyers build legal Agent teams. Marketers build research Agent teams. Product managers build requirements analysis Agent teams.&lt;/p&gt;

&lt;p&gt;On June 3, Xiaomi released the latest version of its open-source project, SoloEngine. The first low-code Agentic AI development platform. Vibe Everything now has a platform to land on.&lt;/p&gt;




&lt;h2&gt;
  
  
  I. From Vibe Coding to Vibe Everything: Where's the Gap?
&lt;/h2&gt;

&lt;p&gt;Vibe Coding has supercharged programmer productivity—Claude Code achieves an 80.9% autonomous problem-solving rate on SWE-bench Verified, while Trae's SOLO mode hits a 92% first-attempt success rate. But the value of Agentic AI extends far beyond programming.&lt;/p&gt;

&lt;p&gt;In the legal industry, Wolters Kluwer's 2026 survey shows 92% of legal professionals use at least one AI tool. Yet Bloomberg Law's data reveals that only 5% of lawyers have actually used an AI Agent. The gap lies between "using AI to draft emails" and "letting AI autonomously handle contract review."&lt;/p&gt;

&lt;p&gt;In the marketing industry, 87% of marketers use AI. But 34% of enterprise marketing teams are already running autonomous Agents in production—more than double the figure from six months ago. Supply can't keep up: too few people can build truly Agentic AI marketing tools.&lt;/p&gt;

&lt;p&gt;The root cause mirrors the programming world. LangChain and CrewAI require writing Python. Dify and n8n do workflows—preset paths, if/else branching, not true autonomous decision-making. The ability to build Agentic AI is gated by a technical barrier, and the people who need Agentic AI the most—lawyers, marketers, product managers—are the very ones kept on the other side.&lt;/p&gt;

&lt;p&gt;SoloEngine's mission is to tear down that barrier. The first development platform that satisfies both "zero-code" and "true Agentic AI" at the same time.&lt;/p&gt;




&lt;h2&gt;
  
  
  II. How SoloEngine Rewrites the Rules
&lt;/h2&gt;

&lt;p&gt;Open a browser. Drag Agents onto a canvas. Connect collaboration relationships. Configure the tools you need. Hit run. The backend automatically compiles the visual design into an executable Agentic AI system—one that plans tasks, executes operations, and delivers results. Users just review and confirm. No lines of code. No if/else logic to configure.&lt;/p&gt;

&lt;p&gt;Each Agent runs a ReAct loop of "think → act → observe → repeat," with all decisions made dynamically at runtime. Take contract review as an example: the Agent doesn't follow a preset checklist item by item. It first identifies high-risk clauses, discovers that a non-compete provision is ambiguous, searches relevant case law on its own, and adjusts its review direction based on what it finds. There are no preset paths—every step is dynamically determined by the result of the previous one.&lt;/p&gt;

&lt;p&gt;SoloEngine doesn't try to be a "super-Agent that does everything." Claude Code and Trae are developer-only tools. Manus took the "general-purpose Agent" route—capable of doing everything, but 87% of its test cases focused on information gathering and basic analysis, automated reports required manual review 43% of the time, and the mid-step error rate was around 12%—doing everything, excelling at nothing. SoloEngine lets domain experts in every industry define what their Agents do, how they do it, and what tools they use. A lawyer's Agent handles only legal work. A marketer's Agent handles only marketing—vertical and precise.&lt;/p&gt;

&lt;p&gt;SoloEngine supports multi-Agent collaboration. Multiple Agents independently process the same task and then cross-verify their outputs. One Agent's blind spot is caught by another; one Agent's judgment bias is corrected by another. Bloomberg Law's survey shows that only 5% of lawyers have actually used an AI Agent, and their core concern is accuracy of AI output. Multi-Agent cross-verification directly addresses that concern.&lt;/p&gt;

&lt;p&gt;A unified adaptation layer covers OpenAI, Anthropic, Ollama, DeepSeek, Tongyi Qianwen, Zhipu, and other major models—one interface, seamless switching. Progressive disclosure lets tools, Skills, and MCP protocols load on demand, cutting token consumption by over 85%.&lt;/p&gt;

&lt;p&gt;Assembled Agent teams can be one-click packaged into complete products. Vibe Lawyering—a lawyer packages a legal Agent and sells it to fellow practitioners. Vibe Marketing—a marketing team packages a marketing Agent and serves 100+ clients.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Dify/n8n&lt;/th&gt;
&lt;th&gt;LangChain/CrewAI&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;SoloEngine&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;True Agentic AI support&lt;/td&gt;
&lt;td&gt;✗ Preset-path workflows only&lt;/td&gt;
&lt;td&gt;✓ ReAct / multi-Agent&lt;/td&gt;
&lt;td&gt;✓ ReAct / multi-Agent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Programming required&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;✗ Must know Python&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Visual orchestration&lt;/td&gt;
&lt;td&gt;Partial&lt;/td&gt;
&lt;td&gt;✗ None&lt;/td&gt;
&lt;td&gt;✓ Full canvas experience&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Can domain experts build independently&lt;/td&gt;
&lt;td&gt;Yes (but no true autonomous decision-making)&lt;/td&gt;
&lt;td&gt;✗&lt;/td&gt;
&lt;td&gt;✓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-Agent collaboration&lt;/td&gt;
&lt;td&gt;✗&lt;/td&gt;
&lt;td&gt;✓&lt;/td&gt;
&lt;td&gt;✓&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  III. Vibe Everything in Practice
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Vibe Lawyering.&lt;/strong&gt; A lawyer drags a "Case File Analysis Agent," a "Legal Statute Search Agent," a "Case Precedent Compilation Agent," an "Argument Analysis Agent," and a "Document Agent" onto the canvas, connects their collaboration relationships, and hits run. Multi-Agent cross-verification ensures that outputs are validated by multiple Agents before delivery. Fully zero-code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Vibe Marketing.&lt;/strong&gt; A marketer drags an "Audience Analysis Agent," a "Competitive Research Agent," a "Strategy Writing Agent," and a "Copy Generation Agent" onto the canvas, hits run, and a complete marketing plan is automatically delivered.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;One-Person Companies.&lt;/strong&gt; One-person limited liability companies nationwide have surpassed 16 million, accounting for 27.4% of all enterprises. 2026 has been dubbed "the Year of the OPC," with over 20 cities rolling out dedicated OPC support policies. SoloEngine's one-click packaging lets OPC entrepreneurs build Agent teams and package them directly into products for sale.&lt;/p&gt;




&lt;p&gt;Karpathy said Vibe Coding lets people forget code exists. SoloEngine brings Vibe Everything to every industry—letting everyone forget the technical barrier exists and simply create in their own domain.&lt;/p&gt;

&lt;p&gt;SoloEngine's positioning: No Workflow. No orchestration code. Just Agents that get things done.&lt;/p&gt;

&lt;p&gt;Visit SoloEngine on GitHub and experience Vibe Everything.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>automation</category>
      <category>agents</category>
    </item>
    <item>
      <title>LangGraph, SoloEngine, CrewAI, Dify, LangGraph – A Comprehensive Guide to the 9 Agent Frameworks of 2026</title>
      <dc:creator>NotAlex</dc:creator>
      <pubDate>Mon, 08 Jun 2026 02:34:15 +0000</pubDate>
      <link>https://dev.to/notalex1001/langgraph-soloengine-crewai-dify-langgraph-a-comprehensive-guide-to-the-9-agent-frameworks-of-225c</link>
      <guid>https://dev.to/notalex1001/langgraph-soloengine-crewai-dify-langgraph-a-comprehensive-guide-to-the-9-agent-frameworks-of-225c</guid>
      <description>&lt;p&gt;The agent framework market has turned into a free-for-all, with everyone rushing to define the next standard.&lt;/p&gt;

&lt;p&gt;GitHub's May roundup listed the nine hottest frameworks: &lt;strong&gt;LangGraph&lt;/strong&gt; (stateful graph orchestration), &lt;strong&gt;SoloEngine&lt;/strong&gt; (low‑code Agentic AI development platform), &lt;strong&gt;CrewAI&lt;/strong&gt; (role‑based multi‑agent), &lt;strong&gt;Dify&lt;/strong&gt; (low‑code workflow platform), &lt;strong&gt;OpenAI Agents SDK&lt;/strong&gt; (lightweight &amp;amp; native), &lt;strong&gt;Semantic Kernel&lt;/strong&gt; (top choice for .NET developers), &lt;strong&gt;AutoGen&lt;/strong&gt; (Microsoft multi‑agent), &lt;strong&gt;Microsoft Agent Framework MAF&lt;/strong&gt;, and &lt;strong&gt;AgentScope&lt;/strong&gt; (Alibaba ecosystem).&lt;/p&gt;

&lt;p&gt;Just the sheer number is dizzying.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Overview
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/langchain-ai/langgraph" rel="noopener noreferrer"&gt;LangGraph&lt;/a&gt;&lt;/strong&gt; – Best for workflows that require state management and human‑in‑the‑loop. Largest and most mature ecosystem. Steep learning curve, but high ceiling.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/Sh4r1ock/SoloEngine" rel="noopener noreferrer"&gt;SoloEngine&lt;/a&gt;&lt;/strong&gt; – A recently exploded open‑source project that lowers the barrier to building Agentic AI to the basement level. Build an agentic tool tailored to your industry and business in 10 minutes. Allows AI to make real decisions and act autonomously – no need to preset if/else flows. Immediately go to production and validate your AI prototype.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/crewAIInc/crewAI" rel="noopener noreferrer"&gt;CrewAI&lt;/a&gt;&lt;/strong&gt; – Best for role‑based multi‑agent scenarios. Very convenient for defining agent roles, tools, and collaboration logic. Raised $18M; nearly half of Fortune 500 companies are using it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/langgenius/dify" rel="noopener noreferrer"&gt;Dify&lt;/a&gt;&lt;/strong&gt; – The low‑code platform closest to product delivery. Comes with RAG pipeline, visual workflows, API layer, and self‑hosting. Great for rapid product idea validation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;OpenAI Agents SDK&lt;/strong&gt; – Lightest and simplest. Good for beginners. However, features are relatively basic; not sufficient for complex scenarios.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/microsoft/semantic-kernel" rel="noopener noreferrer"&gt;Semantic Kernel&lt;/a&gt;&lt;/strong&gt; – Top choice for .NET developers. If you're deeply locked into the Microsoft ecosystem, you have no alternative.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/microsoft/autogen" rel="noopener noreferrer"&gt;AutoGen&lt;/a&gt; / MAF&lt;/strong&gt; – Microsoft's unified framework path. If your company is already heavily committed to Microsoft, this is the most hassle‑free route.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/agentscope-ai/agentscope" rel="noopener noreferrer"&gt;AgentScope&lt;/a&gt;&lt;/strong&gt; – Alibaba ecosystem, suited for Chinese language scenarios and domestic compliance requirements.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Three Top Recommendations
&lt;/h2&gt;

&lt;p&gt;The selection criterion is not "which framework is technically strongest", but "which gets you from prototype to production fastest".&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;If you write code&lt;/strong&gt; – Choose &lt;strong&gt;LangGraph&lt;/strong&gt;. Most mature, largest community, most complete ecosystem.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;If you don't want to write framework code&lt;/strong&gt; – Choose between &lt;strong&gt;Dify&lt;/strong&gt; and &lt;strong&gt;SoloEngine&lt;/strong&gt; based on your scenario.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Dify&lt;/strong&gt; leans toward "one person managing a set of AI applications" – suitable for chatbots, fixed workflows, RAG knowledge bases. Essentially a workflow tool.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SoloEngine&lt;/strong&gt; leans toward "one person managing a team of agents" – a low‑code Agentic AI development platform. Open your browser, drag agents onto a canvas, define roles and decision boundaries for each agent, equip them with tools, click run – the backend automatically compiles a custom Agentic AI system for you. Agents decide how to collaborate on their own – no need for a predefined if/else flowchart, completely autonomous decision‑making by agents.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Dify&lt;/strong&gt; is for "managing processes". &lt;strong&gt;SoloEngine&lt;/strong&gt; is for "managing decisions".&lt;/p&gt;

&lt;h2&gt;
  
  
  What is really happening in 2026?
&lt;/h2&gt;

&lt;p&gt;The competition among frameworks is no longer about "who has more features", but "who is more convenient to use".&lt;/p&gt;

&lt;p&gt;The reason behind this trend: agent development has shifted from a technical problem to a product problem. Your users don't care whether you use LangChain or Dify – they care about what the agent can do.&lt;/p&gt;

&lt;p&gt;Therefore, the framework selection criterion is no longer "which framework is most powerful", but "which framework lets you deliver agents to users the fastest".&lt;/p&gt;

&lt;p&gt;By this standard, only three of the nine frameworks are truly worth recommending. The other six are either too heavy for their use case or not yet mature enough in their ecosystem. Frameworks may become obsolete, but the ability to deliver never will.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>LLMs Now Cost as Much as Electricity: Agent Development's Spring Has Finally Arrived</title>
      <dc:creator>NotAlex</dc:creator>
      <pubDate>Fri, 05 Jun 2026 12:20:25 +0000</pubDate>
      <link>https://dev.to/notalex1001/llms-now-cost-as-much-as-electricity-agent-developments-spring-has-finally-arrived-4l21</link>
      <guid>https://dev.to/notalex1001/llms-now-cost-as-much-as-electricity-agent-developments-spring-has-finally-arrived-4l21</guid>
      <description>&lt;p&gt;In the early hours of May 27, Xiaomi announced permanent price cuts for the MiMo-V2.5 API lineup, with reductions of up to 99%. Cached input tokens dropped from 2.80 yuan to 0.025 yuan. Five days earlier, DeepSeek had done the same—permanently cutting V4-Pro prices by 75%.&lt;/p&gt;

&lt;p&gt;The cached input price for domestic models has now been hard-locked at the 0.025 yuan-per-million-tokens baseline.&lt;/p&gt;

&lt;p&gt;But price cuts are just the prologue. Models are cheaper—has the barrier to building Agents actually dropped?&lt;/p&gt;




&lt;h2&gt;
  
  
  I. The Truth Behind the Price Cut
&lt;/h2&gt;

&lt;p&gt;On May 30, Luo Fuli, the head of Xiaomi's MiMo team and the industry's so-called "AI prodigy," posted a 5,000-word technical blog on X explaining the engineering logic behind the price cut.&lt;/p&gt;

&lt;p&gt;The 99% reduction targets cached input—specifically, the portion where users re-read historical context during extended conversations. Every time a model engages in dialogue, it has to process all historical content. But if that content has already been processed before, the system caches the results and reuses them directly, skipping redundant computation. The actual cost of this cached portion approaches zero, which is why a 99% discount is possible.&lt;/p&gt;

&lt;p&gt;This is made possible by the model architecture itself. In MiMo-V2.5-Pro's 70-layer neural network, only 10 layers need to fully memorize all historical context. The remaining 60 layers focus only on a small recent window, yielding a 7x efficiency boost. Xiaomi's inference system is fully optimized around this architecture, pushing cache hit rates above 93%.&lt;/p&gt;

&lt;p&gt;As Luo Fuli wrote in her blog: "Our raw inference costs are well below the industry average, leaving 2–3x room for profit in our pricing. This price adjustment is simply our decision to pass those structural cost advantages directly to developers."&lt;/p&gt;




&lt;h2&gt;
  
  
  II. Agents Are the Real Token Hog
&lt;/h2&gt;

&lt;p&gt;The token consumption logic in Agent scenarios is fundamentally different from regular chat.&lt;/p&gt;

&lt;p&gt;A typical Agent task involves: long context (system prompts + tool descriptions + historical dialogue) + multi-round reasoning (think → act → observe → repeat) + tool invocations (search, database queries, API calls) + code generation + result verification. A single end-to-end task can consume hundreds of thousands or even millions of tokens.&lt;/p&gt;

&lt;p&gt;Industry reports indicate that the ongoing operational cost of enterprise-grade AI Agents ranges from $3,200 to $13,000 per month, with token consumption accounting for 60%–80% of that.&lt;/p&gt;

&lt;p&gt;But Agent scenarios have one natural advantage: exceptionally high cache hit rates.&lt;/p&gt;

&lt;p&gt;System prompts, tool descriptions, project code, API documentation—this content recurs across every Agent task. Xiaomi's official data shows an average cache hit rate of 93%, with power users exceeding 95%. That means 93% of input tokens can benefit from the rock-bottom price of 0.025 yuan per million tokens.&lt;/p&gt;

&lt;p&gt;MiMo-V2.5-Pro scored 1581 on the GDPVal-AA real-world Agent work benchmark, ranking first globally among open-source models. Its token efficiency requires 40%–60% fewer tokens than Claude Opus 4.6 and GPT-5.4.&lt;/p&gt;

&lt;p&gt;Both DeepSeek and Xiaomi have placed their most aggressive pricing on cached-hit scenarios for a reason that's not hard to understand: Agents are where token consumption truly explodes. In a chat scenario, a user asks a question and the model answers—the cost is relatively easy to estimate. But in an Agent scenario, a single task can involve long context, multi-round reasoning, code generation, tool invocations, web page parsing, file analysis, and result verification. What the user sees is just the final output, but behind the scenes, multiple requests and massive context reads may have already occurred.&lt;/p&gt;

&lt;p&gt;Models are cheaper, so Agent operating costs have plummeted. But here's the question: has the barrier to building Agents actually dropped?&lt;/p&gt;




&lt;h2&gt;
  
  
  III. SoloEngine: Driving Agent Development Barriers to Zero
&lt;/h2&gt;

&lt;p&gt;Price cuts solve the cost of &lt;strong&gt;using&lt;/strong&gt; Agents. &lt;strong&gt;Programmers already have Claude Code and ByteDance's Trae—a single terminal prompt and AI handles the entire development lifecycle autonomously. But these tools serve only programmers—lawyers, marketers, and product managers can't use them.&lt;/strong&gt; There's a more fundamental problem: the barrier to &lt;strong&gt;building&lt;/strong&gt; Agents.&lt;/p&gt;

&lt;p&gt;Building a true AI Agent currently requires either Dify/n8n-type workflow platforms (which don't support autonomous decision-making) or LangChain/CrewAI-type code frameworks (which require Python programming skills). Neither approach lets non-technical users build Agents independently.&lt;/p&gt;

&lt;p&gt;A lawyer won't use LangChain. An accountant can't configure a ReAct Agent. A marketing manager doesn't write Python.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SoloEngine fills precisely this gap.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;SoloEngine is a low-code Agentic AI development platform. Users open a browser, drag Agents onto a canvas, connect collaboration relationships, configure the tools they need, and hit run. The backend automatically compiles the visual design into an executable Agentic AI system—one that plans tasks, executes operations, and delivers real-time feedback, while users only need to review and confirm.&lt;/p&gt;

&lt;p&gt;No lines of code. No if/else logic to configure.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Sh4r1ock/SoloEngine" rel="noopener noreferrer"&gt;SoloEngine&lt;/a&gt; uses genuine Agentic AI architecture—each Agent runs a "think → act → observe → repeat" loop, making real-time decisions based on current conditions rather than following preset paths. Hit an unexpected obstacle, and the Agent finds its own detour. Spot a better approach, and it switches routes on its own.&lt;/p&gt;

&lt;p&gt;Here's how SoloEngine stacks up against the mainstream options:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Dify/n8n&lt;/th&gt;
&lt;th&gt;LangChain/CrewAI&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;SoloEngine&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;True Agentic AI support&lt;/td&gt;
&lt;td&gt;✗ Preset-path workflows only&lt;/td&gt;
&lt;td&gt;✓ ReAct / multi-Agent&lt;/td&gt;
&lt;td&gt;✓ ReAct / multi-Agent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Programming required&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;✗ Must know Python&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Visual orchestration&lt;/td&gt;
&lt;td&gt;Partial&lt;/td&gt;
&lt;td&gt;✗ None&lt;/td&gt;
&lt;td&gt;✓ Full canvas experience&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Can domain experts build independently&lt;/td&gt;
&lt;td&gt;Yes (but no true autonomous decision-making)&lt;/td&gt;
&lt;td&gt;✗&lt;/td&gt;
&lt;td&gt;✓&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-Agent collaboration&lt;/td&gt;
&lt;td&gt;✗&lt;/td&gt;
&lt;td&gt;✓&lt;/td&gt;
&lt;td&gt;✓&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Progressive disclosure—tools, Skills, and MCP protocols load on demand, so Agents only invoke the tools they actually need, cutting token consumption by over 85% in complex tasks. Unified adaptation layer—covering OpenAI, Anthropic, Ollama, MIMO, DeepSeek, Tongyi Qianwen, Zhipu, and all other major models. One-click packaging—assembled Agent teams can be packaged into complete products.&lt;/p&gt;

&lt;p&gt;MiMo's 99% price cut drives Agent operating costs toward zero. SoloEngine drives Agent development barriers to zero. Stack the two together, and SoloEngine's progressive disclosure mechanism saves another 85%+ on tokens.&lt;/p&gt;

&lt;p&gt;Take a concrete scenario: a lawyer drags a "Contract Review Agent" onto the canvas, adds a "Legal Statute Search Agent" and a "Risk Flagging Agent," connects their collaboration relationships, and hits run. Thirty minutes later, a contract review report with 37 flagged risk points is automatically generated. With MiMo's post-price-cut API, monthly costs drop from thousands of yuan to the low hundreds.&lt;/p&gt;

&lt;p&gt;While OpenAI is still locking AgentKit into the GPT-5 ecosystem, Xiaomi has already driven the barrier to Agents down to zero with the MiMo price cut plus SoloEngine combination.&lt;/p&gt;

&lt;p&gt;SoloEngine's positioning is crystal clear: No Workflow. No orchestration code. Just Agents that get things done.&lt;/p&gt;

&lt;p&gt;Github:&lt;a href="https://github.com/Sh4r1ock/SoloEngine" rel="noopener noreferrer"&gt;https://github.com/Sh4r1ock/SoloEngine&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>python</category>
      <category>agents</category>
    </item>
    <item>
      <title>I just looked through the technical documentation, and this thing might actually be the kind of product that takes AI development into a whole new era. Alright, let me go ahead and deploy it so I can see what it can do.</title>
      <dc:creator>NotAlex</dc:creator>
      <pubDate>Thu, 04 Jun 2026 13:49:54 +0000</pubDate>
      <link>https://dev.to/notalex1001/i-just-looked-through-the-technical-documentation-and-this-thing-might-actually-be-the-kind-of-12cd</link>
      <guid>https://dev.to/notalex1001/i-just-looked-through-the-technical-documentation-and-this-thing-might-actually-be-the-kind-of-12cd</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/dufrence/60-billion-into-ai-the-final-mile-of-xiaomi-ai-ambition-pe2" class="crayons-story__hidden-navigation-link"&gt;60 Billion into AI: The Final Mile of Xiaomi AI Ambition&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/dufrence" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3966711%2Fc31ae638-277f-4236-9473-db2a9e124e37.jpg" alt="dufrence profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/dufrence" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Dufrence
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Dufrence
                
              
              &lt;div id="story-author-preview-content-3819864" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/dufrence" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3966711%2Fc31ae638-277f-4236-9473-db2a9e124e37.jpg" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Dufrence&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/dufrence/60-billion-into-ai-the-final-mile-of-xiaomi-ai-ambition-pe2" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Jun 4&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/dufrence/60-billion-into-ai-the-final-mile-of-xiaomi-ai-ambition-pe2" id="article-link-3819864"&gt;
          60 Billion into AI: The Final Mile of Xiaomi AI Ambition
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/ai"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;ai&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/programming"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;programming&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/python"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;python&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/agents"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;agents&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/dufrence/60-billion-into-ai-the-final-mile-of-xiaomi-ai-ambition-pe2" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/fire-f60e7a582391810302117f987b22a8ef04a2fe0df7e3258a5f49332df1cec71e.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/multi-unicorn-b44d6f8c23cdd00964192bedc38af3e82463978aa611b4365bd33a0f1f4f3e97.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;18&lt;span class="hidden s:inline"&gt;&amp;nbsp;reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/dufrence/60-billion-into-ai-the-final-mile-of-xiaomi-ai-ambition-pe2#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              3&lt;span class="hidden s:inline"&gt;&amp;nbsp;comments&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            7 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
    </item>
  </channel>
</rss>
