0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Mac Airのローカル環境にChatbot ui を導入する

Posted at

はじめに

この記事では、Mac AirにChatbotを導入する手順を説明します。

chatbotって何?

chatGPT のローカルUIです
webアプリケーションで作られています

前提条件 

以下の前提条件を満たす必要があります。

  • dockerが使えること
  • gitが使えること
    Macならdockerもgitの導入もコマンド実行で簡単に導入でます
    google検索して調べてみてください

実行コマンド

以下のコマンドを実行するだけで、Chatbotを導入できます

git clone https://github.com/mckaywrigley/chatbot-ui.git
cd chatbot-ui
docker compose up

Docker-compose upを起動すると、必要なモジュールがダウンロードされ、Webサーバーが自動で立ち上がります。

UI画面の立ち上げ

任意のブラウザのアドレス入力欄に「http://localhost:3000」を入力すると、UI画面が立ち上がります。
APIキーを入力すると、ChatGPTがローカルで使用できます

注意

Dockerコマンド実行時に「docker build」や「docker run」を行う必要があるように書いているWebサイトがありますが、Docker-compose upでまとめて同じことができるので、不要です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?