Skip to content

Latest commit

 

History

History
69 lines (45 loc) · 2.64 KB

README_KR_Kr.md

File metadata and controls

69 lines (45 loc) · 2.64 KB

👋 join us on Twitter, Discord and WeChat

InternLM2-Agent.mp4

시작하기

일반적인 Lagent 소개에 대한 overview 를 확인하십시오. 동시에 빠른 시작을 위한 매우 간단한 코드를 제공합니다. 자세한 내용은 examples 를 참조하십시오.

설치

pip를 사용하여 설치하십시오 (권장).

pip install lagent

웹 데모 실행

먼저 streamlit을 설치해야 합니다

# pip install streamlit
streamlit run examples/internlm2_agent_web_demo.py

소개

Lagent는 사용자가 효율적으로 대규모 언어 모델(LLM) 기반 에이전트를 구축할 수 있게 해주는 경량의 오픈 소스 프레임워크입니다. 또한 LLM을 보강하기 위한 몇 가지 일반적인 도구도 제공합니다. 우리 프레임워크의 개요는 아래와 같이 나와 있습니다:

image

인용

이 프로젝트가 귀하의 연구에 유용하다고 생각하면 다음과 같이 인용해 주십시오:

@misc{lagent2023,
    title={{Lagent: InternLM} a lightweight open-source framework that allows users to efficiently build large language model(LLM)-based agents},
    author={Lagent Developer Team},
    howpublished = {\url{https://github.com/InternLM/lagent}},
    year={2023}
}

라이선스

이 프로젝트는 Apache 2.0 하에 공개되었습니다.

🔼 Back to top