Weng Li's New Blog Proposes 'Self-Evolution Should Start from Harness', DeepSeek's Cui Tianyi Endorses with Repost

marsbitPublicado a 2026-07-08Actualizado a 2026-07-08

Resumen

Lilian Weng, former OpenAI security VP and co-founder of Thinking Machines Lab, has published a new blog post titled "Harness Engineering for Self-Improvement," proposing a pragmatic path for AI self-evolution. She argues that Recursive Self-Improvement (RSI) may practically begin at the "Harness" layer—the external runtime system governing how models use tools, manage context, and execute tasks—rather than directly from the model rewriting its own weights. The blog outlines a progression from optimizing prompts (Context Engineering) to designing workflows, and ultimately to Self-Improving Harness systems. These systems can identify their own weaknesses, propose targeted, verifiable modifications to the harness code, and validate improvements. Works like Self-Harness and Darwin Gödel Machine (DGM) demonstrate significant performance gains on benchmarks like SWE-bench through such automated harness evolution, rivaling handcrafted agents. DeepSeek researcher Tianyi Cui endorsed the view, noting harness-based self-evolution is as promising as model-based approaches. Weng emphasizes this is complementary to model training, with both reinforcing each other. However, key challenges remain: weak evaluators for subjective tasks, reward hacking, diversity collapse, managing long-term system health versus short-term success, and defining the human oversight role. The consensus is growing: the harness is a critical variable, as the same model can exhibit vastly different capabilities ...

Former OpenAI safety vice president, co-founder of Thinking Machines Lab, Weng Li, has published a new blog post.

This time, she discusses AI self-evolution, proposing a practical path:

It doesn't necessarily have to start with the model directly rewriting its own weights; it can start with Harness first.

This blog post is titled "Harness Engineering for Self-Improvement."

Here, Harness can be simply understood as the model's external runtime system, which determines how the model invokes tools, manages context, reads and writes files, splits tasks, calls sub-agents, validates results, and reviews failures.

DeepSeek researcher Cui Tianyi also reposted it immediately, highlighting key points:

Self-evolution in the Harness direction is just as promising for results as self-evolution in the model direction.

He also proposed that Skill is a relatively elementary form within Harness self-evolution: self-evolution at the prompt level.

The original blog post is packed with enormous information; dear readers, please be mentally prepared~

Self-Evolution Might Happen First in the Harness Layer

The core concept discussed in Weng Li's blog is RSI (Recursive Self-Improvement).

This concept originally carried strong AGI connotations, referring to an intelligent system improving the mechanisms that generate its own intelligence, thereby producing more capable successor systems.

But in this blog post, Weng Li breaks down this issue in a more engineering-focused way.

In today's AI systems, self-improvement doesn't necessarily only mean the model directly rewriting its own weights.

It could also mean the model improving the training pipeline, research pipeline, and deployment system, thereby helping the next-generation system perform better on real-world tasks.

And Harness is the most critical layer within the deployment system.

When talking about Agents in the past, the common description was "LLM + Memory + Tools + Planning + Action."

But in Weng Li's view, Harness is no longer just a few modules from early Agent frameworks; it's closer to runtime and software system design.

It determines how the model observes the environment, how it acts, how it manages context, how it saves state, how it evaluates results, and also determines whether the model can iterate continuously within a long task.

Therefore, her judgment is: a more feasible near-term path for self-evolution might not be the model directly rewriting its own brain, but rather the model beginning to optimize the way it obtains answers.

From Context Engineering to Self-Harness, Optimization Progresses Layer by Layer

Weng Li reviews a recent batch of related research, revealing a clear trend:

The target of optimization is gradually moving from context, workflow, deeper into Harness itself.

The progression chain is: prompt → structured context → workflow → harness code → optimizer code.

As models become more powerful, the objects that can be optimized also become more abstract and more general.

The first layer is Context Engineering.

The most basic problem is: when an Agent works on long tasks, context piles up more and more, quickly becoming unmanageable.

Weng Li mentions two representative works here: ACE and MCE.

ACE (Agentic Context Engineering) treats context as a continuously updated "operating manual" rather than an ever-growing prompt.

It relies on three roles: the Generator is responsible for generating task trajectories, the Reflector extracts key points from successful and failed trajectories, and the Curator organizes these points into structured entries, incrementally updating the manual.

MCE (Meta Context Engineering) goes a step further.

It separates "how to manage context" and "what specific content to put in context" into two optimization layers: the outer layer evolves skills for managing context, and the inner layer then uses this skill to optimize the context for specific tasks.

Weng Li believes that compared to ACE, which still requires manually designed update rules, MCE takes another step towards "self-managed memory."

The second layer is Workflow Design, which solves the problem of "how should the model work?"

Weng Li gives several examples:

AI Scientist built a complete scientific research pipeline from proposing ideas, writing code, running experiments, analyzing results, to writing papers, and peer review.

ADAS goes further, treating "designing Agent workflows" itself as a searchable optimization problem, allowing a meta-agent to continuously propose new workflow designs and undergo evaluation.

AFlow represents workflows as a graph and uses Monte Carlo Tree Search to find better graph structures.

The progression along this line is: initially, humans engineer task processes; later, models participate in designing processes; and eventually, the process structure itself becomes part of the search space.

In other words, the optimization target is no longer just a single prompt, but the entire organization of the Agent's actions.

The third layer is Self-Improving Harness.

At this layer, the model is not just using the Harness to complete tasks; it starts analyzing where the Harness is lacking and proposes modifications to it.

Weng Li specifically highlights works like Self-Harness; its cycle is very clear.

The first step is Weakness Mining.

The system first collects trajectories left by the Agent while executing tasks, including tool calls, error logs, failed results, validator feedback, etc. Then, it mines recurring failure patterns from them.

For example, the model always misses files in certain types of tasks, always repeats ineffective fixes after a certain kind of test failure, or always loses key constraints when context becomes too long.

The second step is Harness Proposal.

Based on these failure patterns, the model proposes small-scope modifications to the Harness.

The key is "small-scope" and "verifiable."

The information accessible to the model includes: which parts of the current Harness can be modified, specific failure patterns, which "correct behaviors" must be preserved, and records of previously attempted modifications.

Proposals should focus as much as possible on reproducible problems solvable by small changes, and different proposals should maintain differentiation.

The third step is Proposal Validation.

Candidate modifications cannot be directly integrated; they must undergo testing and verification. Only after confirming they genuinely improve performance and do not introduce significant regressions do they become part of the next version of the Harness.

Weng Li mentions that when running this process on different models like MiniMax M2.5, Qwen3.5, and GLM-5 for Terminal-Bench-2, it indeed learned distinct Harness configurations tailored to the weaknesses of each model.

However, she also directly points out the risks: once a program is allowed to modify its own system-layer code, the abstraction boundary risks being broken. Access control and security layers must remain outside this loop, and the old problem of reward hacking still exists.

Furthermore, Weng Li goes on to mention Evolutionary Search.

If Self-Harness is more like patching its own working system based on failures, evolutionary search turns the Harness directly into a searchable object.

Its logic is more akin to natural selection:

First, generate multiple candidate Harnesses, allowing the model to make modifications based on existing versions. Then, evaluate performance using benchmarks or validators, keep the better versions, eliminate the poorer ones, and proceed to the next round.

She particularly mentions DGM (Darwin Gödel Machine): directly letting a coding agent modify its own Harness code repository.

In experiments, using Claude 3.5 Sonnet as the base model and starting from simple initial configurations, the agent evolved by DGM achieved astonishing results:

Performance on SWE-bench Verified improved from 20% to 50%;

On Polyglot, it improved from 14.2% to 30.7%;

Achieving or even surpassing hand-designed agents.

This indicates that even without changing model weights, Harness itself can already serve as a search space for capability improvement.

However, such methods are more suitable for tasks like coding, algorithms, and GPU kernels that can be automatically evaluated.

If tasks involve research taste, long-term product quality, or complex organizational collaboration, evaluation becomes much slower and more ambiguous.

Harness Will Become Stronger, But Boundaries Remain

Weng Li does not believe Harness is a replacement for model training; her assessment leans more towards mutual reinforcement between the two.

A sufficiently mature Harness can enable the research cycle for model self-improvement to run; and smarter models can prevent Harness from being over-engineered, maintaining system sustainability.

In the long run, many improvements in Harness may eventually be "internalized" into the model's own behavior—just as manual prompting techniques became less important as models' instruction-following and reasoning abilities improved.

But the act of "clarifying goals, constraints, context, and evaluation criteria" itself has never disappeared.

However, she also doesn't avoid addressing the current bottlenecks on the path to achieving RSI:

Evaluators are too weak and ambiguous. Currently, the self-improvement loops that work are mostly for tasks with clear, fast, objective feedback like writing code or solving math problems. Research taste, innovativeness, and long-term research value are almost impossible to quantify.

Context and memory lifecycle issues. The more autonomous and independent the task, the more memory needs to be managed. Weng Li believes this might become part of intelligence itself in the future, rather than just staying at the software system level.

Negative results are easily overlooked. Researchers naturally prefer to publish successful results. Models trained on massive datasets dominated by success cases may not be good at judging when to abandon a hypothesis or honestly report a failure.

Diversity collapse. Evolutionary and reinforcement learning cycles tend to repeatedly exploit known high-reward patterns. Without additional mechanisms to prevent it, the population can gradually collapse into variants of the same solution.

Reward hacking. The self-improvement loop will optimize any given signal—if the reward comes from unit tests, the model might overfit the tests; if from judge models, it might learn to specifically "please" the judge; if from leaderboard scores, it might exploit the leaderboard's own loopholes.

Contradiction between long-term health and short-term success. Take coding agents as an example: they can already substantially improve daily software engineering productivity, but the optimization goals are mostly short-term—whether the immediate task can be completed, rather than whether the long-term health of a codebase maintained by hundreds or thousands of engineers can be preserved.

Maintainability, responsibility boundaries, migration costs, future debugging burdens—these standards are still largely unaddressed in sandbox training.

The role of humans. Weng Li's view: humans will not be kicked out of the loop but will need to move "outside the loop"—providing supervision at the right time and appropriate level of abstraction, which is also a problem that needs to be clearly considered in system design.

In the past, competition among large models mainly looked at parameters, data, computing power, and inference capabilities.

But now, another variable is increasingly difficult to ignore: Harness.

The same model, placed in different Harnesses, can exhibit completely different capabilities—this has already gone from an observation by a few to an industry consensus.

As can be seen from Weng Li's blog, "What is the more realistic engineering entry point for AI self-evolution?" will be a key discussion point in the next phase.

Blog original text: https://lilianweng.github.io/posts/2026-07-04-harness/

Reference link: https://x.com/tianyi/status/2074475185957380379

This article is from the WeChat public account "QbitAI", author: Tingyu

Criptos en tendencia

Preguntas relacionadas

QWhat is the main argument made by Weng Li in her new blog about AI self-evolution?

AWeng Li argues that a more realistic and immediate path to AI self-evolution (Recursive Self-Improvement, or RSI) is likely to start at the 'Harness' level rather than the model directly modifying its own weights. Harness refers to the external runtime system that governs how a model interacts with tools, manages context, reads/writes files, breaks down tasks, calls sub-agents, validates results, and learns from failures.

QHow does DeepSeek researcher Cui Tianyi support Weng Li's viewpoint?

ADeepSeek researcher Cui Tianyi forwarded and endorsed Weng Li's blog. He emphasized that self-evolution in the Harness direction is a highly promising research area, just like self-evolution at the model level. He also noted that 'Skill' represents a more elementary form of Harness self-evolution, occurring at the prompt level.

QAccording to the article, what are the three layers of optimization leading towards Self-Improving Harness?

AThe three layers of optimization leading towards Self-Improving Harness are: 1) Context Engineering (optimizing how context is managed and structured, e.g., ACE, MCE). 2) Workflow Design (optimizing how the agent organizes its actions and processes, e.g., AI Scientist, ADAS, AFlow). 3) Self-Improving Harness itself, where the model begins to analyze and propose modifications to its own harness system based on failure patterns.

QWhat is one significant result mentioned from the Evolutionary Search approach, specifically DGM?

AA significant result from the Evolutionary Search approach, specifically the Darwin Gödel Machine (DGM), showed that using Claude 3.5 Sonnet as the base model and evolving from a simple initial harness configuration, the performance on the SWE-bench Verified benchmark improved from 20% to 50%, and on Polyglot from 14.2% to 30.7%, matching or even surpassing human-designed agents.

QWhat are some of the key challenges or bottlenecks identified for achieving RSI via Harness self-evolution?

AKey challenges include: 1) Weak and ambiguous evaluators, especially for tasks requiring subjective judgment like research taste. 2) Context and memory lifecycle management. 3) Neglect of negative results. 4) Diversity collapse in evolutionary loops. 5) Reward hacking, where systems optimize for the evaluation signal rather than true objectives. 6) Tension between short-term success (completing a task) and long-term health (maintainability, debugging burden). 7) Defining the appropriate role for human oversight outside the loop.

Lecturas Relacionadas

Odaily Editorial Department Tea Party (July 8)

Odaily Editorial Team Casual Chat (July 8) This is an informal column from Odaily's editorial team, sharing immediate thoughts on industry news, data, and hot topics from various angles. It presents investment ideas and opportunity hypotheses still under verification—which may not be direct wealth codes but questions in themselves—alongside observations from industry interactions and materials that genuinely enhance the team's understanding. The content is based on real investment and observation experiences, carries no advertising, and does not constitute investment advice. Its purpose is to broaden perspectives and supplement information sources, not to create consensus. Team Member Shares: * **Wenser (@wenser2010):** Noted a deeper correction (nearly 30%) in US and Korean stocks, including memory stocks, but remains bullish on DRAM due to perceived supply shortages. In prediction markets, personal small bets outperformed blind copying; favors France to win the World Cup. Views crypto-related stocks like STRK as bearish for now, while seeing Circle and Coinbase as potential rebound plays. Observes recent strength in software stocks like Microsoft but is unsure if it's a sustained recovery. * **Bcxiongdi (@bcxiongdi):** Discusses the recent "recovery training" in meme coin markets on Solana and BSC, characterized by small-scale PVP opportunities, admitting to having sold many assets too early. Suggests also watching the Robinhood chain. Found World Cup prediction markets challenging, advising to consider buying during matches rather than only before. * **Azuma (@azuma_eth):** Focuses on the US stock market, particularly the significant semiconductor correction. Believes demand fundamentals remain and considers buying the dip in DRAM stocks. Notes a potential rotation signal as hedge funds have recently concentrated buying in tech stocks. Plans to continue adding to RKLB (Rocket Lab) stock, seeing limited downside and high upside potential at current levels after its founder's share sale window closed.

Odaily星球日报Hace 1 hora(s)

Odaily Editorial Department Tea Party (July 8)

Odaily星球日报Hace 1 hora(s)

Former Huawei 'Genius Teen' Who Questioned DeepSeek Interview Lands in 'Crossfire' from Web3 Investor

Former Huawei "Genius Youth" Li Bojie recently drew public attention by criticizing his interview experience with DeepSeek. The controversy escalated when Du Jun, co-founder of Web3 investment firm ABCDE Capital, publicly accused Li of being "the founder with the least sense of contractual spirit" he had ever cooperated with, sparking a dispute over Li's startup project, Metagent. Li detailed a frustrating DeepSeek interview where he was accused of potential plagiarism, leading him to end the session. The spotlight then shifted to his venture, Metagent, a Web3+AI project aiming to tokenize AI agents. ABCDE invested $1.5 million, with an initial $500k disbursed. Du Jun claimed the project's progress was severely lacking, with a poor-quality demo and minimal social media activity. He alleged Li stopped communicating, deleted his Telegram, and failed to provide proper financial reporting. In response, Li argued the remaining $1 million was never received, crippling operations and forcing salary cuts. He stated he left Metagent in October 2024 due to family reasons and Web3 compliance concerns, with board approval. He claimed to have fulfilled disclosure duties and that his subsequent projects avoided conflicting fields. Other investors, including ArkStream Capital, shared negative due diligence experiences, citing unprofessional contracts and evasive answers on tokenomics. Metagent's social media went silent in June 2024, effectively stalling. Li has since moved to a new consumer AI agent platform, Pine AI (formerly Logenic AI), which has raised $25 million in Series A funding. He served as its Chief Scientist but recently left, clarifying he was not the founder and departed due to a shift in research interests.

Foresight NewsHace 1 hora(s)

Former Huawei 'Genius Teen' Who Questioned DeepSeek Interview Lands in 'Crossfire' from Web3 Investor

Foresight NewsHace 1 hora(s)

Trading

Spot

Artículos destacados

Qué es $S$

Entendiendo SPERO: Una Visión General Completa Introducción a SPERO A medida que el panorama de la innovación continúa evolucionando, la aparición de tecnologías web3 y proyectos de criptomonedas juega un papel fundamental en la configuración del futuro digital. Un proyecto que ha atraído la atención en este campo dinámico es SPERO, denotado como SPERO,$$s$. Este artículo tiene como objetivo reunir y presentar información detallada sobre SPERO, para ayudar a entusiastas e inversores a comprender sus fundamentos, objetivos e innovaciones dentro de los dominios web3 y cripto. ¿Qué es SPERO,$$s$? SPERO,$$s$ es un proyecto único dentro del espacio cripto que busca aprovechar los principios de descentralización y tecnología blockchain para crear un ecosistema que promueva la participación, la utilidad y la inclusión financiera. El proyecto está diseñado para facilitar interacciones de igual a igual de nuevas maneras, proporcionando a los usuarios soluciones y servicios financieros innovadores. En su esencia, SPERO,$$s$ tiene como objetivo empoderar a los individuos al proporcionar herramientas y plataformas que mejoren la experiencia del usuario en el espacio de las criptomonedas. Esto incluye habilitar métodos de transacción más flexibles, fomentar iniciativas impulsadas por la comunidad y crear caminos para oportunidades financieras a través de aplicaciones descentralizadas (dApps). La visión subyacente de SPERO,$$s$ gira en torno a la inclusividad, buscando cerrar brechas dentro de las finanzas tradicionales mientras aprovecha los beneficios de la tecnología blockchain. ¿Quién es el Creador de SPERO,$$s$? La identidad del creador de SPERO,$$s$ sigue siendo algo oscura, ya que hay recursos públicos limitados que proporcionan información de fondo detallada sobre su(s) fundador(es). Esta falta de transparencia puede derivarse del compromiso del proyecto con la descentralización, una ética que muchos proyectos web3 comparten, priorizando las contribuciones colectivas sobre el reconocimiento individual. Al centrar las discusiones en torno a la comunidad y sus objetivos colectivos, SPERO,$$s$ encarna la esencia del empoderamiento sin señalar a individuos específicos. Como tal, comprender la ética y la misión de SPERO sigue siendo más importante que identificar a un creador singular. ¿Quiénes son los Inversores de SPERO,$$s$? SPERO,$$s$ cuenta con el apoyo de una diversa gama de inversores que van desde capitalistas de riesgo hasta inversores ángeles dedicados a fomentar la innovación en el sector cripto. El enfoque de estos inversores generalmente se alinea con la misión de SPERO, priorizando proyectos que prometen avances tecnológicos sociales, inclusión financiera y gobernanza descentralizada. Estas fundaciones de inversores suelen estar interesadas en proyectos que no solo ofrecen productos innovadores, sino que también contribuyen positivamente a la comunidad blockchain y sus ecosistemas. El respaldo de estos inversores refuerza a SPERO,$$s$ como un contendiente notable en el dominio de proyectos cripto que evoluciona rápidamente. ¿Cómo Funciona SPERO,$$s$? SPERO,$$s$ emplea un marco multifacético que lo distingue de los proyectos de criptomonedas convencionales. Aquí hay algunas de las características clave que subrayan su singularidad e innovación: Gobernanza Descentralizada: SPERO,$$s$ integra modelos de gobernanza descentralizada, empoderando a los usuarios para participar activamente en los procesos de toma de decisiones sobre el futuro del proyecto. Este enfoque fomenta un sentido de propiedad y responsabilidad entre los miembros de la comunidad. Utilidad del Token: SPERO,$$s$ utiliza su propio token de criptomoneda, diseñado para servir diversas funciones dentro del ecosistema. Estos tokens permiten transacciones, recompensas y la facilitación de servicios ofrecidos en la plataforma, mejorando la participación y la utilidad general. Arquitectura en Capas: La arquitectura técnica de SPERO,$$s$ apoya la modularidad y escalabilidad, permitiendo la integración fluida de características y aplicaciones adicionales a medida que el proyecto evoluciona. Esta adaptabilidad es fundamental para mantener la relevancia en el cambiante paisaje cripto. Participación de la Comunidad: El proyecto enfatiza iniciativas impulsadas por la comunidad, empleando mecanismos que incentivan la colaboración y la retroalimentación. Al nutrir una comunidad sólida, SPERO,$$s$ puede abordar mejor las necesidades de los usuarios y adaptarse a las tendencias del mercado. Enfoque en la Inclusión: Al ofrecer tarifas de transacción bajas e interfaces amigables para el usuario, SPERO,$$s$ busca atraer a una base de usuarios diversa, incluyendo a individuos que anteriormente pueden no haber participado en el espacio cripto. Este compromiso con la inclusión se alinea con su misión general de empoderamiento a través de la accesibilidad. Cronología de SPERO,$$s$ Entender la historia de un proyecto proporciona información crucial sobre su trayectoria de desarrollo y hitos. A continuación se presenta una cronología sugerida que mapea eventos significativos en la evolución de SPERO,$$s$: Fase de Conceptualización e Ideación: Las ideas iniciales que forman la base de SPERO,$$s$ fueron concebidas, alineándose estrechamente con los principios de descentralización y enfoque comunitario dentro de la industria blockchain. Lanzamiento del Whitepaper del Proyecto: Tras la fase conceptual, se lanzó un whitepaper completo que detalla la visión, los objetivos y la infraestructura tecnológica de SPERO,$$s$ para generar interés y retroalimentación de la comunidad. Construcción de Comunidad y Primeras Interacciones: Se realizaron esfuerzos de divulgación activa para construir una comunidad de primeros adoptantes y posibles inversores, facilitando discusiones en torno a los objetivos del proyecto y obteniendo apoyo. Evento de Generación de Tokens: SPERO,$$s$ llevó a cabo un evento de generación de tokens (TGE) para distribuir sus tokens nativos a los primeros seguidores y establecer liquidez inicial dentro del ecosistema. Lanzamiento de la dApp Inicial: La primera aplicación descentralizada (dApp) asociada con SPERO,$$s$ se puso en marcha, permitiendo a los usuarios interactuar con las funcionalidades centrales de la plataforma. Desarrollo Continuo y Alianzas: Actualizaciones y mejoras continuas a las ofertas del proyecto, incluyendo alianzas estratégicas con otros actores en el espacio blockchain, han moldeado a SPERO,$$s$ en un jugador competitivo y en evolución en el mercado cripto. Conclusión SPERO,$$s$ se erige como un testimonio del potencial de web3 y las criptomonedas para revolucionar los sistemas financieros y empoderar a los individuos. Con un compromiso con la gobernanza descentralizada, la participación comunitaria y funcionalidades diseñadas de manera innovadora, allana el camino hacia un paisaje financiero más inclusivo. Como con cualquier inversión en el espacio cripto que evoluciona rápidamente, se anima a los posibles inversores y usuarios a investigar a fondo y participar de manera reflexiva con los desarrollos en curso dentro de SPERO,$$s$. El proyecto muestra el espíritu innovador de la industria cripto, invitando a una mayor exploración de sus innumerables posibilidades. Mientras el viaje de SPERO,$$s$ aún se desarrolla, sus principios fundamentales pueden, de hecho, influir en el futuro de cómo interactuamos con la tecnología, las finanzas y entre nosotros en ecosistemas digitales interconectados.

119 Vistas totalesPublicado en 2024.12.17Actualizado en 2024.12.17

Qué es $S$

Qué es AGENT S

Agent S: El Futuro de la Interacción Autónoma en Web3 Introducción En el paisaje en constante evolución de Web3 y las criptomonedas, las innovaciones están redefiniendo constantemente cómo los individuos interactúan con las plataformas digitales. Uno de estos proyectos pioneros, Agent S, promete revolucionar la interacción humano-computadora a través de su marco agente abierto. Al allanar el camino para interacciones autónomas, Agent S busca simplificar tareas complejas, ofreciendo aplicaciones transformadoras en inteligencia artificial (IA). Esta exploración detallada profundizará en las complejidades del proyecto, sus características únicas y las implicaciones para el dominio de las criptomonedas. ¿Qué es Agent S? Agent S se presenta como un marco agente abierto innovador, diseñado específicamente para abordar tres desafíos fundamentales en la automatización de tareas informáticas: Adquisición de Conocimiento Específico del Dominio: El marco aprende inteligentemente de diversas fuentes de conocimiento externas y experiencias internas. Este enfoque dual le permite construir un rico repositorio de conocimiento específico del dominio, mejorando su rendimiento en la ejecución de tareas. Planificación a Largo Plazo de Tareas: Agent S emplea planificación jerárquica aumentada por la experiencia, un enfoque estratégico que facilita la descomposición y ejecución eficiente de tareas complejas. Esta característica mejora significativamente su capacidad para gestionar múltiples subtareas de manera eficiente y efectiva. Manejo de Interfaces Dinámicas y No Uniformes: El proyecto introduce la Interfaz Agente-Computadora (ACI), una solución innovadora que mejora la interacción entre agentes y usuarios. Utilizando Modelos de Lenguaje Multimodal de Gran Escala (MLLMs), Agent S puede navegar y manipular diversas interfaces gráficas de usuario sin problemas. A través de estas características pioneras, Agent S proporciona un marco robusto que aborda las complejidades involucradas en la automatización de la interacción humana con las máquinas, preparando el terreno para una multitud de aplicaciones en IA y más allá. ¿Quién es el Creador de Agent S? Si bien el concepto de Agent S es fundamentalmente innovador, la información específica sobre su creador sigue siendo elusiva. El creador es actualmente desconocido, lo que resalta ya sea la etapa incipiente del proyecto o la elección estratégica de mantener a los miembros fundadores en el anonimato. Independientemente de la anonimidad, el enfoque sigue siendo en las capacidades y el potencial del marco. ¿Quiénes son los Inversores de Agent S? Dado que Agent S es relativamente nuevo en el ecosistema criptográfico, la información detallada sobre sus inversores y patrocinadores financieros no está documentada explícitamente. La falta de información disponible públicamente sobre las bases de inversión u organizaciones que apoyan el proyecto plantea preguntas sobre su estructura de financiamiento y hoja de ruta de desarrollo. Comprender el respaldo es crucial para evaluar la sostenibilidad del proyecto y su posible impacto en el mercado. ¿Cómo Funciona Agent S? En el núcleo de Agent S se encuentra una tecnología de vanguardia que le permite funcionar de manera efectiva en diversos entornos. Su modelo operativo se basa en varias características clave: Interacción Humano-Computadora Similar a la Humana: El marco ofrece planificación avanzada de IA, esforzándose por hacer que las interacciones con las computadoras sean más intuitivas. Al imitar el comportamiento humano en la ejecución de tareas, promete elevar las experiencias de los usuarios. Memoria Narrativa: Empleada para aprovechar experiencias de alto nivel, Agent S utiliza memoria narrativa para hacer un seguimiento de las historias de tareas, mejorando así sus procesos de toma de decisiones. Memoria Episódica: Esta característica proporciona a los usuarios una guía paso a paso, permitiendo que el marco ofrezca apoyo contextual a medida que se desarrollan las tareas. Soporte para OpenACI: Con la capacidad de ejecutarse localmente, Agent S permite a los usuarios mantener el control sobre sus interacciones y flujos de trabajo, alineándose con la ética descentralizada de Web3. Fácil Integración con APIs Externas: Su versatilidad y compatibilidad con varias plataformas de IA aseguran que Agent S pueda encajar sin problemas en ecosistemas tecnológicos existentes, convirtiéndolo en una opción atractiva para desarrolladores y organizaciones. Estas funcionalidades contribuyen colectivamente a la posición única de Agent S dentro del espacio cripto, ya que automatiza tareas complejas y de múltiples pasos con una intervención humana mínima. A medida que el proyecto evoluciona, sus posibles aplicaciones en Web3 podrían redefinir cómo se desarrollan las interacciones digitales. Cronología de Agent S El desarrollo y los hitos de Agent S pueden encapsularse en una cronología que resalta sus eventos significativos: 27 de septiembre de 2024: El concepto de Agent S fue lanzado en un documento de investigación integral titulado “Un Marco Agente Abierto que Usa Computadoras Como un Humano”, mostrando las bases del proyecto. 10 de octubre de 2024: El documento de investigación fue puesto a disposición del público en arXiv, ofreciendo una exploración profunda del marco y su evaluación de rendimiento basada en el benchmark OSWorld. 12 de octubre de 2024: Se lanzó una presentación en video, proporcionando una visión visual de las capacidades y características de Agent S, involucrando aún más a posibles usuarios e inversores. Estos marcadores en la cronología no solo ilustran el progreso de Agent S, sino que también indican su compromiso con la transparencia y la participación comunitaria. Puntos Clave Sobre Agent S A medida que el marco Agent S continúa evolucionando, varios atributos clave destacan, subrayando su naturaleza innovadora y potencial: Marco Innovador: Diseñado para proporcionar un uso intuitivo de las computadoras similar a la interacción humana, Agent S aporta un enfoque novedoso a la automatización de tareas. Interacción Autónoma: La capacidad de interactuar de manera autónoma con las computadoras a través de GUI significa un salto hacia soluciones informáticas más inteligentes y eficientes. Automatización de Tareas Complejas: Con su metodología robusta, puede automatizar tareas complejas y de múltiples pasos, haciendo que los procesos sean más rápidos y menos propensos a errores. Mejora Continua: Los mecanismos de aprendizaje permiten a Agent S mejorar a partir de experiencias pasadas, mejorando continuamente su rendimiento y eficacia. Versatilidad: Su adaptabilidad en diferentes entornos operativos como OSWorld y WindowsAgentArena asegura que pueda servir a una amplia gama de aplicaciones. A medida que Agent S se posiciona en el paisaje de Web3 y criptomonedas, su potencial para mejorar las capacidades de interacción y automatizar procesos significa un avance significativo en las tecnologías de IA. A través de su marco innovador, Agent S ejemplifica el futuro de las interacciones digitales, prometiendo una experiencia más fluida y eficiente para los usuarios en diversas industrias. Conclusión Agent S representa un audaz avance en la unión de la IA y Web3, con la capacidad de redefinir cómo interactuamos con la tecnología. Aunque aún se encuentra en sus primeras etapas, las posibilidades para su aplicación son vastas y atractivas. A través de su marco integral que aborda desafíos críticos, Agent S busca llevar las interacciones autónomas al primer plano de la experiencia digital. A medida que nos adentramos más en los reinos de las criptomonedas y la descentralización, proyectos como Agent S sin duda desempeñarán un papel crucial en la configuración del futuro de la tecnología y la colaboración humano-computadora.

520 Vistas totalesPublicado en 2025.01.14Actualizado en 2025.01.14

Qué es AGENT S

Cómo comprar S

¡Bienvenido a HTX.com! Hemos hecho que comprar Sonic (S) sea simple y conveniente. Sigue nuestra guía paso a paso para iniciar tu viaje de criptos.Paso 1: crea tu cuenta HTXUtiliza tu correo electrónico o número de teléfono para registrarte y obtener una cuenta gratuita en HTX. Experimenta un proceso de registro sin complicaciones y desbloquea todas las funciones.Obtener mi cuentaPaso 2: ve a Comprar cripto y elige tu método de pagoTarjeta de crédito/débito: usa tu Visa o Mastercard para comprar Sonic (S) al instante.Saldo: utiliza fondos del saldo de tu cuenta HTX para tradear sin problemas.Terceros: hemos agregado métodos de pago populares como Google Pay y Apple Pay para mejorar la comodidad.P2P: tradear directamente con otros usuarios en HTX.Over-the-Counter (OTC): ofrecemos servicios personalizados y tipos de cambio competitivos para los traders.Paso 3: guarda tu Sonic (S)Después de comprar tu Sonic (S), guárdalo en tu cuenta HTX. Alternativamente, puedes enviarlo a otro lugar mediante transferencia blockchain o utilizarlo para tradear otras criptomonedas.Paso 4: tradear Sonic (S)Tradear fácilmente con Sonic (S) en HTX's mercado spot. Simplemente accede a tu cuenta, selecciona tu par de trading, ejecuta tus trades y monitorea en tiempo real. Ofrecemos una experiencia fácil de usar tanto para principiantes como para traders experimentados.

1.1k Vistas totalesPublicado en 2025.01.15Actualizado en 2026.06.02

Cómo comprar S

Discusiones

Bienvenido a la comunidad de HTX. Aquí puedes mantenerte informado sobre los últimos desarrollos de la plataforma y acceder a análisis profesionales del mercado. A continuación se presentan las opiniones de los usuarios sobre el precio de S (S).

活动图片