Abstract
Language agents have achieved considerable performance on various complextasks. Despite the incessant exploration in this field, existing language agentsystems still struggle with costly, non-reproducible data reliance and face thechallenge of compelling a single model for multiple functions. To this end, weintroduce AutoAct, an automatic agent learning framework that does not rely onlarge-scale annotated data and synthetic trajectories from closed-source models(e.g., GPT-4). Given limited data with a tool library, AutoAct firstautomatically synthesizes planning trajectories without any assistance fromhumans or strong closed-source models. Then, AutoAct leverages adivision-of-labor strategy to automatically differentiate based on the targettask information and synthesized trajectories, producing a sub-agent group tocomplete the task. We conduct comprehensive experiments with different LLMs,which demonstrates that AutoAct yields better or parallel performance comparedto various strong baselines. We even notice that AutoAct, when using theLlama-2-13b model, can achieve performance comparable to that of theGPT-3.5-Turbo agent. Code will be available athttps://github.com/zjunlp/AutoAct.