Files
lagent/docs/en/get_started/overview.md
liukuikun 3f3eab1872 [Feat] Add docs content (#6)
* add readdoc config

* updata log

* update readthedoc
2023-08-21 15:38:23 +08:00

1.1 KiB

OVERVIEW

This chapter introduces you to the framework of Lagent, and provides links to detailed tutorials about Lagent.

What is Lagent

Lagent is an open source LLM agent framework, which enables people to efficiently turn a large language model to agent. It also provides some typical tools to enlighten the ablility of LLM, and the whole framework is shown below:

image

Lagent consists of 3 main parts, agents, llms, and actions.

  • agents provides agent implementation, such as ReAct, AutoGPT.
  • llms supports various large language models, including open-sourced models (Llama-2, InterLM) through HuggingFace models or closed-source models like GPT3.5/4.
  • actions contains a series of actions, as well as an action executor to manage all actions.

How to Use

Here is a detailed step-by-step guide to learn more about Lagent:

  1. For installation instructions, please see README.

  2. We provide several examples to build agents with Lagent in examples by simply run python examples/react_example.py.