* agent flow v2 * chat message background * conditon agent flow * add sticky note * update human input dynamic prompt * add HTTP node * add default tool icon * fix export duplicate agentflow v2 * add agentflow v2 marketplaces * refractor memoization, add iteration nodes * add agentflow v2 templates * add agentflow generator * add migration scripts for mysql, mariadb, posrgres and fix date filters for executions * update agentflow chat history config * fix get all flows error after deletion and rename * add previous nodes from parent node * update generator prompt * update run time state when using iteration nodes * prevent looping connection, prevent duplication of start node, add executeflow node, add nodes agentflow, chat history variable * update embed * convert form input to string * bump openai version * add react rewards * add prompt generator to prediction queue * add array schema to overrideconfig * UI touchup * update embedded chat version * fix node info dialog * update start node and loop default iteration * update UI fixes for agentflow v2 * fix async drop down * add export import to agentflowsv2, executions, fix UI bugs * add default empty object to flowlisttable * add ability to share trace link publicly, allow MCP tool use for Agent and Assistant * add runtime message length to variable, display conditions on UI * fix array validation * add ability to add knowledge from vector store and embeddings for agent * add agent tool require human input * add ephemeral memory to start node * update agent flow node to show vs and embeddings icons * feat: add import chat data functionality for AgentFlowV2 * feat: set chatMessage.executionId to null if not found in import JSON file or database * fix: MariaDB execution migration script to utf8mb4_unicode_520_ci --------- Co-authored-by: Ong Chung Yau <33013947+chungyau97@users.noreply.github.com> Co-authored-by: chungyau97 <chungyau97@gmail.com>
7.2 KiB
English | 繁體中文 | 简体中文 | 日本語 | 한국어
AIエージェントをビジュアルに構築
⚡ クイックスタート
NodeJS >= 18.15.0 をダウンロードしてインストール
-
Flowise のインストール
npm install -g flowise -
Flowise の実行
npx flowise startユーザー名とパスワードを入力
npx flowise start --FLOWISE_USERNAME=user --FLOWISE_PASSWORD=1234
🐳 Docker
Docker Compose
- プロジェクトのルートにある
dockerフォルダに移動する .env.exampleファイルをコピーして同じ場所に貼り付け、名前を.envに変更するdocker compose up -d- http://localhost:3000 を開く
- コンテナを停止するには、
docker compose stopを使用します
Docker Image
-
ローカルにイメージを構築する:
docker build --no-cache -t flowise . -
image を実行:
docker run -d --name flowise -p 3000:3000 flowise -
image を停止:
docker stop flowise
👨💻 開発者向け
Flowise には、3 つの異なるモジュールが 1 つの mono リポジトリにあります。
server: API ロジックを提供する Node バックエンドui: React フロントエンドcomponents: サードパーティノードとの統合
必須条件
- PNPM をインストール
npm i -g pnpm
セットアップ
-
リポジトリをクローン
git clone https://github.com/FlowiseAI/Flowise.git -
リポジトリフォルダに移動
cd Flowise -
すべてのモジュールの依存関係をインストール:
pnpm install -
すべてのコードをビルド:
pnpm build -
アプリを起動:
pnpm starthttp://localhost:3000 でアプリにアクセスできるようになりました
-
開発用ビルド:
-
.envファイルを作成し、packages/uiにVITE_PORTを指定する(.env.exampleを参照) -
.envファイルを作成し、packages/serverにPORTを指定する(.env.exampleを参照) -
実行
pnpm dev
コードの変更は http://localhost:8080 に自動的にアプリをリロードします
-
🔒 認証
アプリレベルの認証を有効にするには、 FLOWISE_USERNAME と FLOWISE_PASSWORD を packages/server の .env ファイルに追加します:
FLOWISE_USERNAME=user
FLOWISE_PASSWORD=1234
🌱 環境変数
Flowise は、インスタンスを設定するためのさまざまな環境変数をサポートしています。packages/server フォルダ内の .env ファイルで以下の変数を指定することができる。続きを読む
📖 ドキュメント
🌐 セルフホスト
お客様の既存インフラに Flowise をセルフホストでデプロイ、様々なデプロイをサポートします
☁️ クラウドホスト
🙋 サポート
ご質問、問題提起、新機能のご要望は、discussionまでお気軽にどうぞ
🙌 コントリビュート
これらの素晴らしい貢献者に感謝します
コントリビューティングガイドを参照してください。質問や問題があれば、Discord までご連絡ください。
📄 ライセンス
このリポジトリのソースコードは、Apache License Version 2.0の下で利用可能です。

