Futures
Access hundreds of perpetual contracts
TradFi
Gold
One platform for global traditional assets
Options
Hot
Trade European-style vanilla options
Unified Account
Maximize your capital efficiency
Demo Trading
Introduction to Futures Trading
Learn the basics of futures trading
Futures Events
Join events to earn rewards
Demo Trading
Use virtual funds to practice risk-free trading
Launch
CandyDrop
Collect candies to earn airdrops
Launchpool
Quick staking, earn potential new tokens
HODLer Airdrop
Hold GT and get massive airdrops for free
Pre-IPOs
Unlock full access to global stock IPOs
Alpha Points
Trade on-chain assets and earn airdrops
Futures Points
Earn futures points and claim airdrop rewards
Google releases ReasoningBank, enabling intelligent agents to extract reasoning strategies from success and failure experiences
CryptoWorld News reports that, according to Beating Monitoring, Google Research has released an intelligent agent memory framework called ReasoningBank, enabling large-model-driven agents to continue learning after deployment. The core approach is to distill both successful and failed experiences from past tasks into general reasoning strategies stored in a memory bank, so that when similar tasks are encountered next time, the system retrieves relevant strategies first and then executes. The related paper was published at ICLR, and the code has been open-sourced on GitHub.
Previously, two mainstream solution types each had their own drawbacks: Synapse records complete action trajectories, but the granularity is too fine to transfer; Agent Workflow Memory only extracts workflows from successful cases. ReasoningBank makes two changes: it replaces the storage object from “action sequences” to “reasoning patterns,” and each memory includes a structured three-part field consisting of a title, description, and content; failed trajectories are also incorporated into learning. During execution, the model calls another large model to self-evaluate the execution trajectories, and failure experiences are broken down into pitfall-avoidance rules—for example, upgrading from “click the Load More button when you see it” to “first verify the current page identifier to avoid getting stuck in infinite scrolling, and then click load more.” The paper also proposes Memory-aware Test-time Scaling (MaTTS), which allocates more compute during inference to try repeatedly, and stores the exploration process in the memory bank.
Parallel expansion enables the agent to run multiple different trajectories for the same task, extracting more robust strategies through self-comparison; sequential expansion repeatedly refines within a single trajectory, recording intermediate reasoning into the memory bank. On the WebArena browser task and SWE-Bench-Verified code task benchmarks, using Gemini 2.5 Flash to build the ReAct agent, ReasoningBank achieves an 8.3% higher success rate on WebArena and a 4.6% higher success rate on SWE-Bench-Verified compared with a memoryless baseline, with about 3 fewer steps on average per task. After adding MaTTS parallel expansion (k=5), the WebArena success rate increases by another 3 percentage points, and the number of steps decreases by another 0.4 steps.