운동하는 공대생
[Transformers] Auto GPT - 실습 본문
Intro
요즘 GPT, LLMA, Dolly 등 다양하게 LLM 모델의 열풍이 불고 있어서 이번에 실습으로 Auto-GPT라는 것을 한번 해보았다.
참고 영상
소스 코드
https://github.com/Significant-Gravitas/Auto-GPT
GitHub - Significant-Gravitas/Auto-GPT: An experimental open-source attempt to make GPT-4 fully autonomous.
An experimental open-source attempt to make GPT-4 fully autonomous. - GitHub - Significant-Gravitas/Auto-GPT: An experimental open-source attempt to make GPT-4 fully autonomous.
github.com
Auto GPT
GPT-4 모델을 활용한 최근 버전의 사용 애플리케이션으로 사용자의 사용 목적에 맞춰서 여러가지 하위 작업들을 스스로 판단하여 사용자에게 제공하는 서비스이다.
예를 들어 사용자가 Auto GPT 모델을 여행 도우미 AI 모델로 설정하고 여행 계획에 대하여 질문을 한다면 Auto GPT는 사용자의 질문과 목적에 따라서 스스로 계획을 작성하고 계획에 따라서 웹사이트를 방문하여 정보를 습득하거나 정보를 요약하여 사용자의 목적에 맞게 정보를 제공한다.
이런 서비스가 발전을 한다면 로봇에 적용한다면 사용자가 상황만 부여하면 알아서 판단하고 대처하는 로봇의 행동 프로세스를 만들 수도 있겠다고 생각을 했다.
실습
먼저 Mac 환경 터미널에서 작업을 진행을 하였으며 window일 경우에는 vscode로도 터미널을 이용하여 작업이 가능하다.
1.Clone the repository: For this step, you need Git installed. Note: If you don't have Git, you can just download the latest stable release instead (Source code (zip), at the bottom of the page).
git clone -b stable https://github.com/Significant-Gravitas/Auto-GPT.git
2.Navigate to the directory where you downloaded the repository.
cd Auto-GPT
3.Install the required dependencies.
pip install -r requirements.txt
이제 Auto-GPT 모델에 필요한 라이브러리를 모두 설치했다면 실행!
./run.sh
#or
python -m autogpt
환경설정
.env.template 파일을. env로 폴더 명을 변경하고 폴더 안에서 각가 Open AI 키(유료), Google api키(무료 100건) 등등 연결하고 싶은 플랫폼의 키값들을 입력을 해준다.
오류
Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized OMP: Hint: This means that multiple copies of the OpenMP runtime have been linked into the program.
처음 보는 에러
Do the following to solve the issue:
import os
os.environ['KMP_DUPLICATE_LIB_OK']='True'
아래처럼 수정하면 된다고 그래서 autogpt/__main__. py 파일을 수정했다.
"""Auto-GPT: A GPT powered AI Assistant"""
import autogpt.cli
import os
os.environ['KMP_DUPLICATE_LIB_OK']='True'
if __name__ == "__main__":
autogpt.cli.main()
결론
아직은 좀 멍청하다