AutoGPTのインストールと使い方

AI

AutoGPTは対話しながらタスクの実行できるAIアプリケーションです。オープンソースで公開されており、執筆時点のStableバージョンは0.21になっています。

この記事ではAutoGPTのインストール方法と、実際に使ってみた内容を説明します。

AutoGPTのGithub

AutoGPTのGitHubのURLは以下のとおりです。

GitHub - Significant-Gravitas/AutoGPT: AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters. - GitHu...

執筆時点(2023年4月17日)最新のStableバージョンは0.21となっています。Starは75.6k、Forkは11.2kとなっています。Star Historyのグラフが掲載されていますが、えげつないですね。

出典

https://github.com/Significant-Gravitas/Auto-GPT
https://star-history.com/#Torantulino/auto-gpt&Date

AutoGPTの開発者はToranさんというスコットランドの方で、ゲームとソフトウェアを開発しているようです。この方のスポンサーは現在314人となっています。

インストール要件

AutoGPTのインストールに必要なものは以下のとおりです。

  • Visual Studio Code
  • Visual Studio Code Dev Containers(VSCode拡張機能)
  • Python3.8以降

Visual Studio Code Dev Containersは検索して以下の画面からインストールできます。Microsoftが開発しているものですね。プレビュー版のようです。

Python3.8以降のインストールも特に大きな問題もなくインストールできると思います。Windowsユーザーでscoopを使っている人は、以下のコマンドでサクッとインストールできます。

> scoop install python

Stable版コードのダウンロード

Stable版のAutoGPTを以下のURLからダウンロードしましょう。

Releases · Significant-Gravitas/AutoGPT
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters. - Signi...

ダウンロードしたらzipを展開します。Windowsの人はExploreから展開でもいいですが、unzipコマンドを使うとサクッと展開できます。

unzipコマンドはscoopからサクッとインストールできます。

> scoop install unzip

unzipコマンドからzipファイルを展開するするには以下のようにzipファイルを指定するだけです。

> unzip .\Auto-GPT-0.2.0.zip

Pythonモジュールインストール

AutoGPTの中にあるrequirements.txtを使用して、pipコマンドでインストールします。

> pip install -r .\requirements.txt

envファイル変更

まず、.env.templateというファイルを.envに名前変更します。

> mv .\.env.template .\.env

.envファイルを開き、編集していきます。

まずはOpenAIのAPIキーを以下の箇所に入力します。

次に、EXECUTE_LOCAL_COMMANDSをTrueに変更します。AutoGPTにシェルコマンドの実行を許可します。

いざ、実行!

設定は完了しましたのでAutoGPTを実行していきます。

実行方法は、AutoGPTのフォルダで以下のコマンドを実行します。

> python -m autogpt

Hello Worldアプリの開発を指示してみるが・・・

Hello Worldと表示するコンソールアプリをPythonで開発するよう指示してみました。

以下はAutoGPTのログ全文です。

まずは初期設定です。AIの名前を入力するように求められますが、特に気の利いた名前が見つかりませんのでデフォルトのままとします。

PS C:\Users\Administrator\source\Auto-GPT-0.2.0> python -m autogpt
Welcome to Auto-GPT!  Enter the name of your AI and its role below. Entering nothing will load defaults.
Name your AI:  For example, 'Entrepreneur-GPT'
AI Name:

次に役割を入力します。アプリを開発してもらいたかったので、単純にDeveloperと入力しましたが、Application Developerなど具体的な名前にするべきだったかもしれません。

Entrepreneur-GPT here!  I am at your service.
Describe your AI's role:  For example, 'an AI designed to autonomously develop and run businesses with the sole goal of increasing your net worth.'
Entrepreneur-GPT is: Develoer

AIの目標を入力します。5つ登録できるようですが、自分がやってもらいたいことは「Hello Worldと表示するコンソールアプリの開発」ですので、それだけにしてみました。

Enter up to 5 goals for your AI:  For example: Increase net worth, Grow Twitter Account, Develop and manage multiple businesses autonomously'
Enter nothing to load defaults, enter nothing when finished.
Goal 1: Development of a Python console application that displays Hello World
Goal 2:

なにやらAutoGPTが考え始めています。システムチェックのため、単純なコマンドを実行すべきだと考えたようです。
コマンドの内容は「echo 'System check'」ですので、実行して問題なさそうです。「y」を入力して実行を許可します。

Using memory of type: LocalCache
ENTREPRENEUR-GPT THOUGHTS:  I think I should start with a simple command to check my system
REASONING:  Checking the system helps to ensure everything is working properly

PLAN:
-  Perform a system check
-  Begin with 'execute_shell' command to run basic shell commands

CRITICISM:  I should take time to analyze the results of the check to confirm if there are any issues.
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.

NEXT ACTION:  COMMAND = execute_shell ARGUMENTS = {'command_line': "echo 'System check'"}

Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

コマンド実行の結果、標準出力から「System check」という文字列が得られたようです。コマンドは成功したようですね。

次はGPT-3.5を使って「Hello World」と書かれた画像を生成すると考えたようです。・・・なぜ??

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
Executing command 'echo 'System check'' in working directory 'C:\Users\Administrator\source\Auto-GPT-0.2.0\auto_gpt_workspace'
SYSTEM:  Command execute_shell returned: STDOUT: b"'System check'\r\n" STDERR: b''
ENTREPRENEUR-GPT THOUGHTS:  The system check command was successful. I think I should generate an image using GPT-3.5 AI for my prompt 'Hello World'
REASONING:  Generating an image with a prompt is a good demonstration of GPT-3.5 abilities and can be used to showcase the capability of the system
PLAN:
-  Start GPT-3.5 Agent with 'start_agent' command
-  Generate image with 'generate_image' command
CRITICISM:  I should check the results of the image generation and see if it meets my needs
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = start_agent ARGUMENTS = {'name': 'gpt_agent', 'task': 'image_generation', 'prompt': 'Hello World'}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

どうやら画像を生成することでコンセプトの証明になると考えたようですが、よくわかりません。

やってほしいことはコンソールアプリの開発なので、「do not generate image. develop console app using python.」と応答してみました。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
SYSTEM:  Command start_agent returned: Agent gpt_agent created with key 0. First response: Hello! How can I assist you today?
ENTREPRENEUR-GPT THOUGHTS:  I should generate an image with the prompt 'Hello World' using the GPT-3.5 agent
REASONING:  Generating an image displays the capability of the system and could serve as a good proof of concept.
PLAN:
-  Generate image with 'generate_image' command using the 'gpt_agent' key.
CRITICISM:  I should check if the image meets my requirement before proceeding to the next task
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = generate_image ARGUMENTS = {'prompt': 'Hello World', 'key': 0}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:do not generate image. develop console app using python.

「コンソールにHello Worldと表示するPythonアプリを開発するべき」と考え直してくれたようです。よかったよかった。

hello_world.pyというファイルに「print('Hello, World')」というテキストを書き込んで、Pythonを実行するということを考えています。

素晴らしい、ぜひそれでやってください。

SYSTEM:  Human feedback: do not generate image. develop console app using python.
ENTREPRENEUR-GPT THOUGHTS:  I should create a Python program that prints 'Hello World' in the console.
REASONING:  Creating a simple console app is a good starting point to confirm that the Python environment is set up properly, and it would serve as a good proof of concept.
PLAN:
-  Open a new Python file using 'write_to_file'.
-  Write a print statement that admits 'Hello world', 'write_to_file'.
-  Save the Python file.
-  Execute the Python file using 'execute_python_file'
CRITICISM:  I should ensure that the executed output matches my expectation for the Hello World program.
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = write_to_file ARGUMENTS = {'file': 'hello_world.py', 'text': "print('Hello, World')"}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

ファイルへの書き込みは成功したようですね。あとは実行するだけ、ですが、「execute_python_file」というコマンドを実行するようです。

大丈夫か?そんなコマンド、あったっけ?AutoGPT独自コマンドでしょうか。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
SYSTEM:  Command write_to_file returned: File written to successfully.
ENTREPRENEUR-GPT THOUGHTS:  Now that I've created the python file with the 'Hello World' print statement, I need to execute the python file and display the 'Hello World' message in the console.
REASONING:  Executing the Python file is necessary to verify that the file was created and that the print statement was successfully executed.
PLAN:
-  Execute Python file with 'execute_python_file' command
CRITICISM:  I should ensure that the output of the Python file matches my expectation for the Hello World program
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = execute_python_file ARGUMENTS = {'file': 'hello_world.py'}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

hello_world.pyを実行したようです。execute_python_fileはエイリアスだったのかもしれないですね。しかし実行した結果、指定したファイルが見つからなかったようです。

再び「echo 'System check'」を実行してシステムチェックするようです。さっきうまくいったので、確認するまでもなく今回も成功すると思われますが、やりたいようなので「y」を入力。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
Executing file 'hello_world.py' in workspace 'auto_gpt_workspace'
SYSTEM:  Command execute_python_file returned: Error: Error while fetching server API version: (2, 'CreateFile', 'The system cannot find the file specified.')
ENTREPRENEUR-GPT THOUGHTS:  I think I should start with a simple command to check my system
REASONING:  Checking the system helps to ensure everything is working properly
PLAN:
-  Perform a system check
-  Begin with 'execute_shell' command to run basic shell commands
CRITICISM:  I should take time to analyze the results of the check to confirm if there are any issues.
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = execute_shell ARGUMENTS = {'command_line': "echo 'System check'"}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

システムチェックを実施した結果、標準出力から「System check」という文字列を得られたようです。よかったですね、そりゃさっきもやったから、ね。

次に、また画像を生成したいようです。これも先ほどと同じ流れですが、堂々巡りになりそうなので今度は画像生成させてみようと思い、「y」を入力してみます。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
Executing command 'echo 'System check'' in working directory 'C:\Users\Administrator\source\Auto-GPT-0.2.0\auto_gpt_workspace'
SYSTEM:  Command execute_shell returned: STDOUT: b"'System check'\r\n" STDERR: b''
ENTREPRENEUR-GPT THOUGHTS:  The system check command was successful. I think I should generate an image using GPT-3.5 AI for my prompt 'Hello World'
REASONING:  Generating an image with a prompt is a good demonstration of GPT-3.5 abilities and can be used to showcase the capability of the system
PLAN:
-  Start GPT-3.5 Agent with 'start_agent' command
-  Generate image with 'generate_image' command
CRITICISM:  I should check the results of the image generation and see if it meets my needs
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = start_agent ARGUMENTS = {'name': 'gpt_agent', 'task': 'image_generation', 'prompt': 'Hello World'}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

generate_imageというコマンドで「Hello World」というプロンプトの画像を生成するようです。どんな画像が生成されるのか面白いからみてみようぞ。「y」を回答してみます。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
SYSTEM:  Command start_agent returned: Agent gpt_agent created with key 1. First response: Hello there! How may I assist you today?
ENTREPRENEUR-GPT THOUGHTS:  I should generate an image with the prompt 'Hello World' using the GPT-3.5 agent
REASONING:  Generating an image displays the capability of the system and could serve as a good proof of concept.
PLAN:
-  Generate image with 'generate_image' command using the 'gpt_agent' key.
CRITICISM:  I should check if the image meets my requirement before proceeding to the next task
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = generate_image ARGUMENTS = {'prompt': 'Hello World', 'key': 1}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

「generate_image」コマンドの結果、62133d93-be3c-46ce-8b02-48bc139004ef.jpgというファイルを保存したようです。どれどれ、ちゃんとできてるではありませんか。

画像を開いてみると、こんな感じでした。HelloとWorldが合体してHerldになってませんかね。

画像生成ができたので、AutoGPTはPythonコンソールアプリの開発に集中してくれるようです。最初の目標を忘れてなかったようですね。

「Hello Worldとコンソールに出力するコードを「write_to_file」コマンドを使って開発」「improve_codeコマンドを使ってコードを最適化する」という計画を立ててくれました。まぁまぁ悪くない計画なんじゃないっすかね。

でも次にやるアクションは「do_nothing」のようです。あれ、計画はどこにいった?とりあえず「y」を入力してみます。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
Image Generated for prompt:Hello World
SYSTEM:  Command generate_image returned: Saved to disk:62133d93-be3c-46ce-8b02-48bc139004ef.jpg
ENTREPRENEUR-GPT THOUGHTS:  Now that the image generation is done and the image is saved locally, I should focus on developing a Python console application that simply displays Hello World to the user.
REASONING:  Creating a console application in Python can help confirm that Python is properly installed and that the environment is configured for development.
PLAN:
-  Develop a simple console app in Python using 'write_to_file' command that prints 'Hello World' to the console,
-  Optimize the code using 'improve_code' command
CRITICISM:  I should analyze the optimized code to ensure that it satisfies my requirement before proceeding to the next task
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = do_nothing ARGUMENTS = {}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:y

また自分のチェックをしようとしています。うーん、これ以上は堂々巡りになりそうなので、検証はここまで。「n」を入力して終了させました。

-=-=-=-=-=-=-= COMMAND AUTHORISED BY USER -=-=-=-=-=-=-=
SYSTEM:  Command do_nothing returned: No action performed.
ENTREPRENEUR-GPT THOUGHTS:  I think I should start with a simple command to check my system.
REASONING:  Checking the system helps to ensure everything is working properly.
PLAN:
-  Perform a system check
-  Begin with 'execute_shell' command to run basic shell commands.
CRITICISM:  I should take time to analyze the results of the check to confirm if there are any issues.
Attempting to fix JSON by finding outermost brackets
Apparently json was fixed.
NEXT ACTION:  COMMAND = execute_shell ARGUMENTS = {'command_line': "echo 'System check'"}
Enter 'y' to authorise command, 'y -N' to run N continuous commands, 'n' to exit program, or enter feedback for Entrepreneur-GPT...
Input:n
Exiting...
PS C:\Users\Administrator\source\Auto-GPT-0.2.0>

結論:駄目だけど、思考してる(駄目だけど)

結局Pythonコンソールアプリは開発できませんでした。でも一応は思考して目標に向かって計画を立ててタスクを実行しています。思考→計画→タスク実行というシステムモデルでは一般化しすぎて単純なプログラミングはできず、プログラミングに特化したAIアプリの方が成功する、ということなのでしょうか。まだまだ改善の余地がありそうなので引き続きAutoGPTのプロジェクトをウォッチしておきます。

コメント

タイトルとURLをコピーしました