Add model card and metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +30 -3
README.md CHANGED
@@ -1,3 +1,30 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ ---
6
+
7
+ # EvolveR
8
+
9
+ EvolveR is a framework designed to enable LLM agents to self-improve through a complete, closed-loop experience lifecycle. This repository contains the model weights introduced in the paper [EvolveR: Self-Evolving LLM Agents through an Experience-Driven Lifecycle](https://huggingface.co/papers/2510.16079).
10
+
11
+ ## Resources
12
+ - **Paper:** [EvolveR: Self-Evolving LLM Agents through an Experience-Driven Lifecycle](https://huggingface.co/papers/2510.16079)
13
+ - **Code:** [https://github.com/Edaizi/EvolveR](https://github.com/Edaizi/EvolveR)
14
+
15
+ ## Description
16
+ Current Large Language Model (LLM) agents show strong performance in tool use but often lack the capability to systematically learn from their own experiences. EvolveR addresses this by introducing a lifecycle comprising:
17
+ 1. **Offline Self-Distillation**: Synthesizing interaction trajectories into a structured repository of abstract, reusable strategic principles.
18
+ 2. **Online Interaction**: Task interaction guided by retrieved distilled principles to guide decision-making and accumulate behavioral trajectories.
19
+
20
+ This loop employs a policy reinforcement mechanism to iteratively update the agent based on its performance.
21
+
22
+ ## Citation
23
+ ```bibtex
24
+ @article{wu2025evolver,
25
+ title={EvolveR: Self-Evolving LLM Agents through an Experience-Driven Lifecycle},
26
+ author={Wu, Rong and Wang, Xiaoman and Mei, Jianbiao and Cai, Pinlong and Fu, Daocheng and Yang, Cheng and Wen, Licheng and Yang, Xuemeng and Shen, Yufan and Wang, Yuxin and Shi, Botian},
27
+ journal={arXiv preprint arXiv:2510.16079},
28
+ year={2025}
29
+ }
30
+ ```