ChatDev のインストールとテスト実行(Windows 上)
【目次】
【関連する外部ページ】
- ChatDev の 公式の GitHub ページ: https://github.com/OpenBMB/ChatDev
- ChatDev の 公式の README(日本語版): https://github.com/OpenBMB/ChatDev/blob/main/README-Japanese.md
前準備
Python 3.10,Git のインストール(Windows 上)
Pythonは,プログラミング言語の1つ. Gitは,分散型のバージョン管理システム.
【手順】
- Windows で,コマンドプロンプトを管理者として実行
コマンドプロンプトを管理者として実行: 別ページ »で説明
次のコマンドを実行
次のコマンドは,Python ランチャーとPython 3.10とGitをインストールし,Gitにパスを通すものである.
次のコマンドでインストールされるGitは 「git for Windows」と呼ばれるものであり, Git,MinGW などから構成されている.
winget install --scope machine Python.Launcher winget install --scope machine Python.Python.3.10 winget install --scope machine Git.Git powershell -command "$oldpath = [System.Environment]::GetEnvironmentVariable(\"Path\", \"Machine\"); $oldpath += \";c:\Program Files\Git\cmd\"; [System.Environment]::SetEnvironmentVariable(\"Path\", $oldpath, \"Machine\")"
【関連する外部ページ】
- Python の公式ページ: https://www.python.org/
- Git の公式ページ: https://git-scm.com/
【サイト内の関連ページ】
【関連項目】 Python, Git バージョン管理システム, Git の利用
ChatDev のインストールとテスト実行(Windows 上)
OpenAPI の API キーの取得
OpenAI の APIキーを準備する
【関連する外部ページ】
- OpenAI の API キーのページ
- 料金の条件や利用履歴はこちらで確認.
OpenAPI の API キーを環境変数 OPENAPI_API_KEY に設定
OpenAI の APIキーをWindows の環境変数OPENAPI_API_KEY に設定する.
ChatDev のインストールとテスト実行(Windows 上)
ChatDev の 公式の README(日本語版): https://github.com/OpenBMB/ChatDev/blob/main/README-Japanese.md に説明されている手順で行う.
- Windows で,コマンドプロンプトを管理者として実行
コマンドプロンプトを管理者として実行: 別ページ »で説明
- ダウンロードと前提パッケージのインストール
cd /d c:%HOMEPATH% rmdir /s /q ChatDev git clone https://github.com/OpenBMB/ChatDev.git cd ChatDev python -m pip install -r requirements.txt
- 終了の確認
- ソフトウエアの構築
「video game. two game players. one is computer. the other is human.」のところには,英語で,AI に作成を頼みたいソフトウエアについて詳しく,具体的に書く. 「"myname」のところにはプロジェクト名を指定する.
cd /d c:%HOMEPATH% cd ChatDev python run.py --task "video game. two game players. one is computer. the other is human." --name "name"
- 終了の確認
- ソフトウエアの実行
「name」のところには,先ほど指定したプロジェクト名を書くこと.
cd WareHouse\name_* python -m pip install -r requirements.txt python main.py
この他に実行できるソフトウエアの一覧は,ChatDev の 公式の GitHub ページ: https://github.com/OpenBMB/ChatDev に掲載されている
- 画面が開くので確認する.