Skip to content

Releases: InternLM/lagent

v0.2.3

30 Jul 12:31
47f8661
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.2...v0.2.3

v0.2.2

26 Feb 03:08
4fd014b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.1...v0.2.2

v0.2.1

01 Feb 05:15
e20a768
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.2.1

v0.2.0

31 Jan 13:47
990828c
Compare
Choose a tag to compare

What's Changed

  • Stream Output: Provides the stream_chat interface for streaming output, allowing cool streaming demos right at your local setup.

  • Interfacing is unified, with a comprehensive design upgrade for enhanced extensibility, including:

    • Model: Whether it's the OpenAI API, Transformers, or LMDeploy inference acceleration framework, you can seamlessly switch between models.
    • Action: Simple inheritance and decoration allow you to create your own personal toolkit, adaptable to both InternLM and GPT.
    • Agent: Consistent with the Model's input interface, the transformation from model to intelligent agent only takes one step, facilitating the exploration and implementation of various agents.
  • Documentation has been thoroughly upgraded with full API documentation coverage.

Welcome to watch our demo at https://www.youtube.com/watch?v=YAelRLi0Zak

Lagent Release v0.1.3

30 Jan 03:34
85b91cc
Compare
Choose a tag to compare

The last release for version 0.1

What's Changed

New Contributors

v0.1.2

24 Oct 14:48
5061645
Compare
Choose a tag to compare
Bump version v0.1.2 (#55)

Lagent Release v0.1.1

22 Aug 03:46
3ba9abf
Compare
Choose a tag to compare

Main Features

  • Support multiple kinds of agents out of the box. Lagent now supports ReAct, AutoGPT, and ReWOO, which can drive the large language models(LLMs) for multiple trials of reasoning and function calling.
  • Extremely simple and easy to extend. The framework is quite simple with a clear structure. With only 20 lines of code, you are able to construct your own agent. It also supports three typical tools: Python interpreter, API call, and Google search.
  • Support various large language models. We support different LLMs, including API-based (GPT-3.5/4) and open-source (LLaMA 2, InternLM) models.