Li Feifei's Latest Article: When Video Generation, Robotics, and NVIDIA All Claim to Have 'World Models,' We Need a Taxonomy

链捕手Publicado em 2026-07-05Última atualização em 2026-07-05

Resumo

"World Model" has become a widely used yet ambiguous term in AI. Drawing from the classic POMDP framework (agent → action → state → observation), this article proposes a functional taxonomy to clarify the concept. It identifies three distinct types, categorized by their output in the perception-action loop: 1. **Renderers**: Output visual observations (pixels). These models, like advanced video generators, prioritize visual fidelity but often lack underlying physical accuracy. 2. **Simulators**: Output the state of the world (geometry, physics, dynamics). They provide a structurally accurate representation for professionals (e.g., architects) and serve as training environments for robots and AI agents. 3. **Planners**: Output actions. Given an observation and a goal, they determine what an agent should do next, closing the perception-action loop (e.g., vision-language-action models). While renderers are currently the most commercially mature and planners are the most aspirational, the article argues that **simulators are the crucial, underappreciated hub**. By working at the level of geometry and physics, a simulator can project upwards to create visuals for humans and downwards to predict action consequences for agents. The future lies in the convergence of these three functions. Emerging research and products, like World Labs' Marble model which outputs both visual splats and physical collision meshes, are beginning to blur these boundaries. The logical endpoint is a ...

Author: Li Feifei

Translation: Jiayang

'World model' is probably the hottest and most confusing concept in the AI field since 2025. When Sora emerged, OpenAI called it a world simulator; Genie lets you walk around in generated scenes and is also called a world model; robotics companies say they're working on world models; NVIDIA says Omniverse is the infrastructure for world models; even game engines have been pulled into this narrative. Everyone is using the same term, but they're talking about completely different things.

Today, Li Feifei published a new article on her personal Substack to clarify this concept. She first returns to the most classic diagram in reinforcement learning textbooks (the POMDP closed loop: agent → action → state → observation → agent), then points out that what are now called 'world models' are actually three different projections of this closed loop. Those outputting pixels (observations) are renderers, those outputting states are simulators, and those outputting actions are planners. The classification criteria are very simple: it depends on which part of the loop you output.

(Source: MIT Technology Review)

She assesses that among the three, renderers are the most commercially mature but have a ceiling (looking good does not equal physical correctness); planners are the most exciting but furthest from real-world deployment (the chasm between lab demos and practical usability remains vast); and simulators are the severely underestimated critical hub. Because simulators operate at the level of geometry, physics, and dynamics, they can project upwards into pixels for human consumption and also derive action consequences downwards for robot use. Mastering simulation simultaneously provides the foundation for rendering and planning; the reverse is not true.

This article is, of course, also a product manifesto for World Labs. Their Marble already outputs both Gaussian splats and collision meshes, attempting to unify renderer and simulator into a single model. The ultimate vision described at the end of the article is a unified world foundation model that can freely switch between rendering, simulation, and planning based on downstream needs. Whether this vision can be realized is another matter, but as an analytical framework, the tripartite classification of renderer/simulator/planner may indeed help cut through some of the noise surrounding the current 'world model' concept.

The full translation follows.

"The world is all that is the case." — Ludwig Wittgenstein, Tractatus Logico-Philosophicus, 1921

The world is not made of words.

In an earlier article, we proposed that spatial intelligence is the next frontier for AI, and world models are the path toward it. Here, the World Labs team and I want to delve one level deeper: among the many things currently labeled as "world models," which functional modules truly constitute this capability, and what are their respective purposes?

Language models have endowed machines with powerful mastery over concepts, vocabulary, and reasoning. But the physical world, whether virtual or real, operates on a completely different substrate. Language models learn the statistical structure of text; world models learn the statistical structure of space and time: how light falls on a surface, what a garden looks like from an angle never captured by a camera, how objects respond to forces and follow physical laws.

This makes "world model" one of the most important and simultaneously most abused terms in today's AI field. Computer vision, robotics, reinforcement learning, and generative AI all claim to be building world models, but each refers to something drastically different. A video model that generates gorgeous but physically impossible flames, a language model that improvises playable games, a physics engine that faithfully simulates a combustion process—they are all called by the same name.

The ancient Greeks could never agree on what the world was made of—be it fire, water, or indivisible atoms—because "the world" has never been a single thing. It has always been a substitute term used by a thinker to reason about a certain totality. AI inherits the same problem, and it happens precisely at the moment when the field needs precision the most.

The Loop Behind the Taxonomy

To clear up this confusion, we can start with a diagram older than all the technologies mentioned above. All reinforcement learning textbooks, including the classic by Sutton and Barto, have used variations of the same diagram for decades to describe how an agent interacts with the world. Its formal name is the Partially Observable Markov Decision Process (POMDP), and the term "world model" was originally defined within this tradition.

An agent (which can be a human, a robot, or a software system) takes an action. These actions change the state of the world. But the agent can never directly see the state itself; what it receives are observations: photons hitting the retina, sensor readings, pixels in a video frame. New observations guide new actions, and the cycle repeats.

The word "state" needs to be unpacked because its meaning shifts across different domains. This is not the chemist's state, not the distinction between solid, liquid, and gas. This is the physicist's and roboticist's state: a complete description of everything happening in the world at a given moment, including every object, every position, every velocity, every property. The state is the underlying reality of the world, in principle complete, but forever unobservable directly by any agent within it. Observations are the agent's partial view of this reality. Actions are the agent's response accordingly.

This closed loop (agent → action → state → observation → agent) is precisely the structure that gives the term "world model" its technical meaning. The phrase itself is even older, traceable to Kenneth Craik's 1943 proposal that the mind reasons by running "small-scale models" of reality, and by the late 1980s and early 1990s, the concept was introduced into neural networks. This loop also explains what people mean when they use the term today. The various things now called world models are actually different projections of the same closed loop, each outputting a different component of the loop.

Three Functions of World Models

The first type of world model is the Renderer. A renderer outputs observations, specifically pixels for the human eye, and the most important quality metric is visual fidelity. A video model that transforms text prompts into cinematic aerial shots is a renderer; interactive systems like Google's Genie 3 or World Labs' own RTFM are also renderers, generating visuals in real-time based on user input. Such models lack an explicit understanding of 3D structure. They generate what a viewer would see, not what things are like in themselves. The building in an aerial shot might look flawless from above, but try navigating the city below, and they will collapse.

The second type is the Simulator. A simulator outputs states: a geometrically, physically, or kinematically faithful representation of the world upon which both humans and computer programs can compute and interact. The renderer's contract is purely visual, while the simulator's contract is structural, demanding geometry that holds up under scrutiny, physics that obey Newton's laws, and dynamics that behave as expected by physical principles. Simulators serve two classes of users. Professionals like architects, designers, filmmakers, and game developers require accuracy beyond visual plausibility. Computer programs like reinforcement learning agents, robot controllers, and autonomous vehicles treat the simulator as a training ground to interact with the world at scale, testing scenarios that are either dangerous, expensive, or simply impossible to execute in reality.

The third type is the Planner. A planner outputs actions. Given an observation and a goal, the planner answers the question: what should the agent do next? In many ways, the planner is the inverse of the renderer. The renderer takes actions as input and produces observations; the planner takes observations as input and produces actions, thereby closing the perception-action loop. Vision-Language-Action models (VLA), model-based systems, and the new wave of World Action Models are all different attempts at planners: enabling systems to decide what a robot should do in an unstructured world.

These three categories cover most of the work currently being implemented, and the distinction is useful in practice. But these categories are not fundamentally separate. They share the same underlying knowledge about how the world works: geometry, physics, dynamics. A model that can render a cup from any angle should, in principle, also be able to simulate what happens if the cup is pushed and plan a hand to pick it up. Increasingly, the most interesting research is deliberately blurring the boundaries between these three.

Illustration | Three Types of World Models (Source: Substack)

Why Simulation Is the Key Hub

Among the three categories, simulators receive the least public attention yet are the most important of the three. This article seeks to correct that asymmetry.

Renderers are currently the most commercially mature. Numerous image or text-to-video products are rapidly expanding in consumer and enterprise markets. Google's Nano Banana model has brought renderer-level image generation capabilities to potentially hundreds of millions of users. The technology is real, and the market is real. However, renderers optimize for visual plausibility rather than physical accuracy, and this ceiling is important. Their outputs are beautiful, but you cannot use them to design a building or train a robot.

Planners are the most exciting and least mature, closely tied to the rapidly evolving field of robot learning. The past two years have produced many robot demos that look impressive in videos, but we need to be honest about what these demos actually show. Almost all demos are confined to highly constrained lab environments with limited objects and short task durations. None have been validated against the complexity, diversity, and duration required for real-world deployment. The gap from a stunning demo video to a robot that works reliably in a kitchen, warehouse, or operating room remains vast.

Nevertheless, the scale of commercial bets is substantial. A wave of well-funded new entrants is racing to launch general-purpose planning systems, while large infrastructure players are layering planning capabilities atop broader simulation stacks.

Simulation is the bridge connecting the two. If language is an abstraction of the world and pixels are a projection of the world, then geometry, physics, and dynamics are the world itself. A simulator must operate at this level: it is the structural skeleton from which visual appearances (for renderers) and action consequences (for planners) can both be derived.

A model that masters simulation can project its understanding into pixels for human consumption and into action predictions for embodied agents. A model that masters only rendering or only planning can do neither. The commercial space here is immense. NVIDIA's Omniverse alone, according to the company's estimate, targets a market opportunity exceeding a trillion dollars, covering factories, warehouses, supply chains, and digital twins. Robot training, autonomous vehicle testing, architectural visualization, engineering design, drug discovery—all rely on some form of simulation.

The most difficult open questions in the field are also concentrated here. 3D data with explicit geometry, material properties, and physical annotations is orders of magnitude scarcer than internet videos used for renderer training. The sim-to-real gap (the difference between how objects behave in simulation versus the real world) persists. Generative simulators introduce new risks on top of this: AI-generated geometry might look correct but actually contain self-intersections or incorrect scales, leading to absurd results in physics simulation. The computational cost of large-scale multi-physics simulation (rigid bodies, deformable objects, fluids, cloth all interacting simultaneously) remains orders of magnitude higher than simulation in a single domain.

At World Labs, Marble is our first step in this direction. It takes multimodal input (text, image, video, or spatial sketches) and generates explorable 3D environments, simultaneously outputting Gaussian splats for visual exploration and collision meshes for physics engines. But Marble is only the first chapter of a long arc. As the boundaries between rendering, simulation, and planning begin to dissolve, the entire field is writing this story.

The Boundaries Are Blurring, and What Comes Next

The most important trend in the field right now is that the three categories are beginning to merge. The underlying consensus is that the knowledge required to render a world, simulate it, and act within it is largely the same. Continuing with the previous example, a model that truly understands how a cup sits on a table (its geometry, material properties, response to forces, etc.) should be able to render that cup from any angle, simulate what happens if the cup is pushed, and plan a hand to pick it up. The three categories are three projections of the same underlying understanding.

For instance, a small but growing body of work from various robotics labs has recently shown the possibility, at least conceptually, that a pre-trained video renderer can serve as the backbone for joint world prediction and action prediction, allowing a single model to simultaneously imagine "what will happen" and "what to do," thus bridging renderers and planners. World Labs' Marble can already output both Gaussian splats and collision meshes from a single model, dissolving the boundary between renderer and simulator. At every level, the move is from passive output to interactive systems: renderers become responsive to action conditioning, simulators generate worlds that are more controllable and editable, and planners begin deliberative reasoning rather than merely reacting.

The logical endpoint is a unified world model: a foundation model capable of rendering photorealistic views, generating physically accurate structures, planning action sequences, and switching between different output modalities based on the needs of downstream users. We will still face a series of formidable challenges. The data landscape is extremely uneven, with renderers sitting on vast amounts of internet video, while simulators and planners face severe shortages of 3D assets and robot demonstration data. Optimization for visual beauty may come at the expense of precision needed for robotics or high-fidelity simulation. Reconciling these tensions within a single architecture is the central open problem in world model research today, and what World Labs is committed to solving as Marble continues to evolve.

(Source: Substack)

But the overall direction is clear. From the late 1980s to today, the field's bet has always been the same: that if the world model is rich enough, everything an agent needs to see the world, build it, and act within it is contained therein. This bet is now driving a generation of research. And what truly gives it weight is the already-occurring convergence: the three threads of rendering, simulation, and planning, each already supporting industries worth billions, started as independent research directions and are now beginning to merge. When the boundaries disappear, the confluence of the three will redefine something larger: the relationship between machine intelligence and the physical world it inhabits, which is the long-term trajectory of spatial intelligence.

Language has given machines a way to talk about the world. World models are the path by which machines finally come to understand, imagine, reason, and interact with it.

Reference: 1.https://drfeifei.substack.com/p/a-functional-taxonomy-of-world-models

Criptomoedas em alta

Perguntas relacionadas

QAccording to Fei-Fei Li's article, what are the three main functional categories of 'world models' in AI, and what do they primarily output?

AAccording to Fei-Fei Li, the three functional categories are: 1. Renderers, which output observations (e.g., pixels for human consumption). 2. Simulators, which output the world's state (a geometrically, physically accurate representation). 3. Planners, which output actions (deciding what an agent should do next).

QWhy does the article argue that the simulator is the 'key hub' among the three categories of world models?

AThe article argues the simulator is the key hub because it works at the foundational level of geometry, physics, and dynamics—the 'skeleton' of the world. From an accurate simulation, one can derive visual outputs for renderers and action consequences for planners, but a model that only knows rendering or planning cannot achieve the other.

QWhat is the POMDP loop, and how does it provide the framework for defining the different types of world models?

AThe POMDP (Partially Observable Markov Decision Process) loop describes an agent taking an action, which changes the world's state. The agent then receives an observation (a partial view of the state), which informs its next action. World models are different projections of this loop: renderers output observations, simulators output states, and planners output actions.

QWhat is the main limitation of current renderer-type world models, despite their commercial maturity?

AThe main limitation is that they optimize for visual fidelity, not physical accuracy. Their output can look beautiful but may not be physically correct, making them unsuitable for tasks like architectural design or training robots, which require structural and physical correctness.

QWhat is the 'logical end point' or ultimate vision for world models described in the article, and what is a key challenge in achieving it?

AThe ultimate vision is a unified world foundation model capable of rendering photorealistic views, generating physically accurate structures, and planning action sequences, switching between these outputs based on downstream needs. A key challenge is the extremely uneven data landscape, with abundant internet video for renderers but severe scarcity of high-quality 3D and robotics demonstration data for simulators and planners.

Leituras Relacionadas

Li Fei-Fei's Latest Long-Form Article: When Video Generation, Robotics, and NVIDIA All Call Themselves World Models, We Need a Taxonomy

In a new article, Dr. Fei-Fei Li addresses the widespread and often inconsistent use of the term "world model" in AI. She proposes a clear, functional taxonomy rooted in the classic Partially Observable Markov Decision Process (POMDP) loop (agent → action → state → observation → agent). According to this framework, current systems called "world models" are different projections of this loop, categorized by their primary output: 1. **Renderers**: Output observations (pixels). Their goal is visual fidelity for human consumption (e.g., video generation models like Sora). They are the most commercially mature but are limited by a focus on appearance over physical accuracy. 2. **Simulators**: Output states (geometric, physical, dynamic representations). They provide a structurally accurate world for both human professionals (e.g., architects) and computational agents (e.g., robots for training). Li argues simulators are the crucial, underappreciated bridge, as they can underpin both rendering and planning. 3. **Planners**: Output actions. Given an observation and a goal, they decide what an agent should do next (e.g., robotic action models). This area is highly promising but remains the least mature for real-world deployment. Li highlights a key trend: the boundaries between these three categories are beginning to blur, as they all rely on a shared underlying understanding of geometry, physics, and dynamics. The logical endpoint is a unified world foundation model capable of switching between rendering, simulation, and planning based on downstream needs. This convergence, she concludes, is central to advancing spatial intelligence—enabling machines not just to talk about the world, but to truly understand, imagine, and interact with it.

marsbitHá 2h

Li Fei-Fei's Latest Long-Form Article: When Video Generation, Robotics, and NVIDIA All Call Themselves World Models, We Need a Taxonomy

marsbitHá 2h

Forbes Feature: Stablecoin Cross-Border Payments Are Faster, But Not Yet Cheaper

A Forbes feature delves into the state of stablecoin-based cross-border payments, noting rapid growth but a key shortfall: while faster and more accessible, they are not yet cheaper. At a recent industry conference in Mexico City, optimism about technology, regulation, and volume was tempered by discussions with practitioners. The core issue is liquidity. Traditional FX brokers charge 60-70 basis points, and stablecoins promise to slash this to 2-5 basis points. However, this theoretical cost advantage cannot be realized until deep liquidity pools are established at scale, requiring significant institutional capital inflow. A major adoption barrier is trust. Businesses often rely on long-standing relationships with traditional brokers, valuing reliability over marginal cost savings. This shift will be gradual. Furthermore, successful companies in the space are not positioning themselves as replacements for legacy systems like SWIFT, but as complements. They leverage stablecoins for speed while using traditional rails for their standardization and reliability in ensuring accurate payment details—a critical factor for supplier payments to avoid customs issues. Companies like Caliza, experiencing high monthly growth, exemplify this hybrid approach. The industry anticipates consolidation, as long-term viability will depend on securing the essential trifecta: proper licensing, robust fiat on/off-ramps, and deep liquidity. Without these, firms risk being mere intermediaries rather than building sustainable businesses.

marsbitHá 2h

Forbes Feature: Stablecoin Cross-Border Payments Are Faster, But Not Yet Cheaper

marsbitHá 2h

Trading

Spot

Artigos em Destaque

O que é $S$

Compreender o SPERO: Uma Visão Abrangente Introdução ao SPERO À medida que o panorama da inovação continua a evoluir, o surgimento de tecnologias web3 e projetos de criptomoeda desempenha um papel fundamental na formação do futuro digital. Um projeto que tem atraído atenção neste campo dinâmico é o SPERO, denotado como SPERO,$$s$. Este artigo tem como objetivo reunir e apresentar informações detalhadas sobre o SPERO, para ajudar entusiastas e investidores a compreender as suas bases, objetivos e inovações nos domínios web3 e cripto. O que é o SPERO,$$s$? O SPERO,$$s$ é um projeto único dentro do espaço cripto que procura aproveitar os princípios da descentralização e da tecnologia blockchain para criar um ecossistema que promove o envolvimento, a utilidade e a inclusão financeira. O projeto é concebido para facilitar interações peer-to-peer de novas maneiras, proporcionando aos utilizadores soluções e serviços financeiros inovadores. No seu núcleo, o SPERO,$$s$ visa capacitar indivíduos ao fornecer ferramentas e plataformas que melhoram a experiência do utilizador no espaço das criptomoedas. Isso inclui a possibilidade de métodos de transação mais flexíveis, a promoção de iniciativas impulsionadas pela comunidade e a criação de caminhos para oportunidades financeiras através de aplicações descentralizadas (dApps). A visão subjacente do SPERO,$$s$ gira em torno da inclusão, visando fechar lacunas dentro das finanças tradicionais enquanto aproveita os benefícios da tecnologia blockchain. Quem é o Criador do SPERO,$$s$? A identidade do criador do SPERO,$$s$ permanece algo obscura, uma vez que existem recursos publicamente disponíveis limitados que fornecem informações detalhadas sobre o(s) seu(s) fundador(es). Esta falta de transparência pode resultar do compromisso do projeto com a descentralização—uma ética que muitos projetos web3 partilham, priorizando contribuições coletivas em vez de reconhecimento individual. Ao centrar as discussões em torno da comunidade e dos seus objetivos coletivos, o SPERO,$$s$ incorpora a essência do empoderamento sem destacar indivíduos específicos. Assim, compreender a ética e a missão do SPERO é mais importante do que identificar um criador singular. Quem são os Investidores do SPERO,$$s$? O SPERO,$$s$ é apoiado por uma diversidade de investidores que vão desde capitalistas de risco a investidores-anjo dedicados a promover a inovação no setor cripto. O foco desses investidores geralmente alinha-se com a missão do SPERO—priorizando projetos que prometem avanço tecnológico social, inclusão financeira e governança descentralizada. Essas fundações de investidores estão tipicamente interessadas em projetos que não apenas oferecem produtos inovadores, mas que também contribuem positivamente para a comunidade blockchain e os seus ecossistemas. O apoio desses investidores reforça o SPERO,$$s$ como um concorrente notável no domínio em rápida evolução dos projetos cripto. Como Funciona o SPERO,$$s$? O SPERO,$$s$ emprega uma estrutura multifacetada que o distingue de projetos de criptomoeda convencionais. Aqui estão algumas das características-chave que sublinham a sua singularidade e inovação: Governança Descentralizada: O SPERO,$$s$ integra modelos de governança descentralizada, capacitando os utilizadores a participar ativamente nos processos de tomada de decisão sobre o futuro do projeto. Esta abordagem promove um sentido de propriedade e responsabilidade entre os membros da comunidade. Utilidade do Token: O SPERO,$$s$ utiliza o seu próprio token de criptomoeda, concebido para servir várias funções dentro do ecossistema. Esses tokens permitem transações, recompensas e a facilitação de serviços oferecidos na plataforma, melhorando o envolvimento e a utilidade gerais. Arquitetura em Camadas: A arquitetura técnica do SPERO,$$s$ suporta modularidade e escalabilidade, permitindo a integração contínua de funcionalidades e aplicações adicionais à medida que o projeto evolui. Esta adaptabilidade é fundamental para manter a relevância no panorama cripto em constante mudança. Envolvimento da Comunidade: O projeto enfatiza iniciativas impulsionadas pela comunidade, empregando mecanismos que incentivam a colaboração e o feedback. Ao nutrir uma comunidade forte, o SPERO,$$s$ pode melhor atender às necessidades dos utilizadores e adaptar-se às tendências do mercado. Foco na Inclusão: Ao oferecer taxas de transação baixas e interfaces amigáveis, o SPERO,$$s$ visa atrair uma base de utilizadores diversificada, incluindo indivíduos que anteriormente podem não ter participado no espaço cripto. Este compromisso com a inclusão alinha-se com a sua missão abrangente de empoderamento através da acessibilidade. Cronologia do SPERO,$$s$ Compreender a história de um projeto fornece insights cruciais sobre a sua trajetória de desenvolvimento e marcos. Abaixo está uma cronologia sugerida que mapeia eventos significativos na evolução do SPERO,$$s$: Fase de Conceituação e Ideação: As ideias iniciais que formam a base do SPERO,$$s$ foram concebidas, alinhando-se de perto com os princípios de descentralização e foco na comunidade dentro da indústria blockchain. Lançamento do Whitepaper do Projeto: Após a fase conceitual, um whitepaper abrangente detalhando a visão, os objetivos e a infraestrutura tecnológica do SPERO,$$s$ foi lançado para atrair o interesse e o feedback da comunidade. Construção da Comunidade e Primeiros Envolvimentos: Esforços ativos de divulgação foram feitos para construir uma comunidade de primeiros adotantes e investidores potenciais, facilitando discussões em torno dos objetivos do projeto e angariando apoio. Evento de Geração de Tokens: O SPERO,$$s$ realizou um evento de geração de tokens (TGE) para distribuir os seus tokens nativos a apoiantes iniciais e estabelecer liquidez inicial dentro do ecossistema. Lançamento da dApp Inicial: A primeira aplicação descentralizada (dApp) associada ao SPERO,$$s$ foi lançada, permitindo que os utilizadores interagissem com as funcionalidades principais da plataforma. Desenvolvimento Contínuo e Parcerias: Atualizações e melhorias contínuas nas ofertas do projeto, incluindo parcerias estratégicas com outros players no espaço blockchain, moldaram o SPERO,$$s$ em um jogador competitivo e em evolução no mercado cripto. Conclusão O SPERO,$$s$ é um testemunho do potencial do web3 e das criptomoedas para revolucionar os sistemas financeiros e capacitar indivíduos. Com um compromisso com a governança descentralizada, o envolvimento da comunidade e funcionalidades inovadoras, abre caminho para um panorama financeiro mais inclusivo. Como em qualquer investimento no espaço cripto em rápida evolução, potenciais investidores e utilizadores são incentivados a pesquisar minuciosamente e a envolver-se de forma ponderada com os desenvolvimentos em curso dentro do SPERO,$$s$. O projeto demonstra o espírito inovador da indústria cripto, convidando a uma exploração mais aprofundada das suas inúmeras possibilidades. Embora a jornada do SPERO,$$s$ ainda esteja a desenrolar-se, os seus princípios fundamentais podem, de facto, influenciar o futuro de como interagimos com a tecnologia, as finanças e uns com os outros em ecossistemas digitais interconectados.

81 Visualizações TotaisPublicado em {updateTime}Atualizado em 2024.12.17

O que é $S$

O que é AGENT S

Agent S: O Futuro da Interação Autónoma no Web3 Introdução No panorama em constante evolução do Web3 e das criptomoedas, as inovações estão constantemente a redefinir a forma como os indivíduos interagem com plataformas digitais. Um projeto pioneiro, o Agent S, promete revolucionar a interação humano-computador através do seu framework aberto e agente. Ao abrir caminho para interações autónomas, o Agent S visa simplificar tarefas complexas, oferecendo aplicações transformadoras em inteligência artificial (IA). Esta exploração detalhada irá aprofundar-se nas complexidades do projeto, nas suas características únicas e nas implicações para o domínio das criptomoedas. O que é o Agent S? O Agent S é um framework aberto e agente, especificamente concebido para abordar três desafios fundamentais na automação de tarefas computacionais: Aquisição de Conhecimento Específico de Domínio: O framework aprende inteligentemente a partir de várias fontes de conhecimento externas e experiências internas. Esta abordagem dupla capacita-o a construir um rico repositório de conhecimento específico de domínio, melhorando o seu desempenho na execução de tarefas. Planeamento ao Longo de Longos Horizontes de Tarefas: O Agent S emprega planeamento hierárquico aumentado por experiência, uma abordagem estratégica que facilita a decomposição e execução eficientes de tarefas intrincadas. Esta característica melhora significativamente a sua capacidade de gerir múltiplas subtarefas de forma eficiente e eficaz. Gestão de Interfaces Dinâmicas e Não Uniformes: O projeto introduz a Interface Agente-Computador (ACI), uma solução inovadora que melhora a interação entre agentes e utilizadores. Utilizando Modelos de Linguagem Multimodais de Grande Escala (MLLMs), o Agent S pode navegar e manipular diversas interfaces gráficas de utilizador de forma fluida. Através destas características pioneiras, o Agent S fornece um framework robusto que aborda as complexidades envolvidas na automação da interação humana com máquinas, preparando o terreno para uma infinidade de aplicações em IA e além. Quem é o Criador do Agent S? Embora o conceito de Agent S seja fundamentalmente inovador, informações específicas sobre o seu criador permanecem elusivas. O criador é atualmente desconhecido, o que destaca ou o estágio nascente do projeto ou a escolha estratégica de manter os membros fundadores em anonimato. Independentemente da anonimidade, o foco permanece nas capacidades e no potencial do framework. Quem são os Investidores do Agent S? Como o Agent S é relativamente novo no ecossistema criptográfico, informações detalhadas sobre os seus investidores e financiadores não estão explicitamente documentadas. A falta de informações disponíveis publicamente sobre as fundações de investimento ou organizações que apoiam o projeto levanta questões sobre a sua estrutura de financiamento e roteiro de desenvolvimento. Compreender o apoio é crucial para avaliar a sustentabilidade do projeto e o seu impacto potencial no mercado. Como Funciona o Agent S? No núcleo do Agent S reside uma tecnologia de ponta que lhe permite funcionar eficazmente em diversos ambientes. O seu modelo operacional é construído em torno de várias características-chave: Interação Humano-Computador Semelhante: O framework oferece planeamento avançado em IA, esforçando-se para tornar as interações com computadores mais intuitivas. Ao imitar o comportamento humano na execução de tarefas, promete elevar as experiências dos utilizadores. Memória Narrativa: Utilizada para aproveitar experiências de alto nível, o Agent S utiliza memória narrativa para acompanhar os históricos de tarefas, melhorando assim os seus processos de tomada de decisão. Memória Episódica: Esta característica fornece aos utilizadores orientações passo a passo, permitindo que o framework ofereça suporte contextual à medida que as tarefas se desenrolam. Suporte para OpenACI: Com a capacidade de funcionar localmente, o Agent S permite que os utilizadores mantenham o controlo sobre as suas interações e fluxos de trabalho, alinhando-se com a ética descentralizada do Web3. Fácil Integração com APIs Externas: A sua versatilidade e compatibilidade com várias plataformas de IA garantem que o Agent S possa integrar-se perfeitamente em ecossistemas tecnológicos existentes, tornando-o uma escolha apelativa para desenvolvedores e organizações. Estas funcionalidades contribuem coletivamente para a posição única do Agent S no espaço cripto, à medida que automatiza tarefas complexas e em múltiplos passos com mínima intervenção humana. À medida que o projeto evolui, as suas potenciais aplicações no Web3 podem redefinir a forma como as interações digitais se desenrolam. Cronologia do Agent S O desenvolvimento e os marcos do Agent S podem ser encapsulados numa cronologia que destaca os seus eventos significativos: 27 de Setembro de 2024: O conceito de Agent S foi lançado num artigo de pesquisa abrangente intitulado “Um Framework Agente Aberto que Usa Computadores como um Humano”, mostrando a base para o projeto. 10 de Outubro de 2024: O artigo de pesquisa foi disponibilizado publicamente no arXiv, oferecendo uma exploração aprofundada do framework e da sua avaliação de desempenho com base no benchmark OSWorld. 12 de Outubro de 2024: Uma apresentação em vídeo foi lançada, proporcionando uma visão visual das capacidades e características do Agent S, envolvendo ainda mais potenciais utilizadores e investidores. Estes marcos na cronologia não apenas ilustram o progresso do Agent S, mas também indicam o seu compromisso com a transparência e o envolvimento da comunidade. Pontos-Chave Sobre o Agent S À medida que o framework Agent S continua a evoluir, várias características-chave destacam-se, sublinhando a sua natureza inovadora e potencial: Framework Inovador: Concebido para proporcionar um uso intuitivo de computadores semelhante à interação humana, o Agent S traz uma abordagem nova à automação de tarefas. Interação Autónoma: A capacidade de interagir autonomamente com computadores através de GUI significa um avanço em direção a soluções computacionais mais inteligentes e eficientes. Automação de Tarefas Complexas: Com a sua metodologia robusta, pode automatizar tarefas complexas e em múltiplos passos, tornando os processos mais rápidos e menos propensos a erros. Melhoria Contínua: Os mecanismos de aprendizagem permitem que o Agent S melhore a partir de experiências passadas, aprimorando continuamente o seu desempenho e eficácia. Versatilidade: A sua adaptabilidade em diferentes ambientes operacionais, como OSWorld e WindowsAgentArena, garante que pode servir uma ampla gama de aplicações. À medida que o Agent S se posiciona no panorama do Web3 e das criptomoedas, o seu potencial para melhorar as capacidades de interação e automatizar processos significa um avanço significativo nas tecnologias de IA. Através do seu framework inovador, o Agent S exemplifica o futuro das interações digitais, prometendo uma experiência mais fluida e eficiente para os utilizadores em diversas indústrias. Conclusão O Agent S representa um ousado avanço na união da IA e do Web3, com a capacidade de redefinir a forma como interagimos com a tecnologia. Embora ainda esteja nas suas fases iniciais, as possibilidades para a sua aplicação são vastas e cativantes. Através do seu framework abrangente que aborda desafios críticos, o Agent S visa trazer interações autónomas para o primeiro plano da experiência digital. À medida que avançamos mais profundamente nos domínios das criptomoedas e da descentralização, projetos como o Agent S desempenharão, sem dúvida, um papel crucial na formação do futuro da tecnologia e da colaboração humano-computador.

694 Visualizações TotaisPublicado em {updateTime}Atualizado em 2025.01.14

O que é AGENT S

Como comprar S

Bem-vindo à HTX.com!Tornámos a compra de Sonic (S) simples e conveniente.Segue o nosso guia passo a passo para iniciar a tua jornada no mundo das criptos.Passo 1: cria a tua conta HTXUtiliza o teu e-mail ou número de telefone para te inscreveres numa conta gratuita na HTX.Desfruta de um processo de inscrição sem complicações e desbloqueia todas as funcionalidades.Obter a minha contaPasso 2: vai para Comprar Cripto e escolhe o teu método de pagamentoCartão de crédito/débito: usa o teu visa ou mastercard para comprar Sonic (S) instantaneamente.Saldo: usa os fundos da tua conta HTX para transacionar sem problemas.Terceiros: adicionamos métodos de pagamento populares, como Google Pay e Apple Pay, para aumentar a conveniência.P2P: transaciona diretamente com outros utilizadores na HTX.Mercado de balcão (OTC): oferecemos serviços personalizados e taxas de câmbio competitivas para os traders.Passo 3: armazena teu Sonic (S)Depois de comprar o teu Sonic (S), armazena-o na tua conta HTX.Alternativamente, podes enviá-lo para outro lugar através de transferência blockchain ou usá-lo para transacionar outras criptomoedas.Passo 4: transaciona Sonic (S)Transaciona facilmente Sonic (S) no mercado à vista da HTX.Acede simplesmente à tua conta, seleciona o teu par de trading, executa as tuas transações e monitoriza em tempo real.Oferecemos uma experiência de fácil utilização tanto para principiantes como para traders experientes.

1.3k Visualizações TotaisPublicado em {updateTime}Atualizado em 2026.06.02

Como comprar S

Discussões

Bem-vindo à Comunidade HTX. Aqui, pode manter-se informado sobre os mais recentes desenvolvimentos da plataforma e obter acesso a análises profissionais de mercado. As opiniões dos utilizadores sobre o preço de S (S) são apresentadas abaixo.

活动图片