Files
Flowise/i18n/README-JA.md
T
Henry Heng 7924fbce0d Feature/agentflow v2 (#4298)
* 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>
2025-05-10 10:21:26 +08:00

7.2 KiB

Flowise Logo Flowise Logo

Release Notes Discord Twitter Follow GitHub star chart GitHub fork

English | 繁體中文 | 简体中文 | 日本語 | 한국어

AIエージェントをビジュアルに構築

クイックスタート

NodeJS >= 18.15.0 をダウンロードしてインストール

  1. Flowise のインストール

    npm install -g flowise
    
  2. Flowise の実行

    npx flowise start
    

    ユーザー名とパスワードを入力

    npx flowise start --FLOWISE_USERNAME=user --FLOWISE_PASSWORD=1234
    
  3. http://localhost:3000 を開く

🐳 Docker

Docker Compose

  1. プロジェクトのルートにある docker フォルダに移動する
  2. .env.example ファイルをコピーして同じ場所に貼り付け、名前を .env に変更する
  3. docker compose up -d
  4. http://localhost:3000 を開く
  5. コンテナを停止するには、docker compose stop を使用します

Docker Image

  1. ローカルにイメージを構築する:

    docker build --no-cache -t flowise .
    
  2. image を実行:

    docker run -d --name flowise -p 3000:3000 flowise
    
  3. image を停止:

    docker stop flowise
    

👨‍💻 開発者向け

Flowise には、3 つの異なるモジュールが 1 つの mono リポジトリにあります。

  • server: API ロジックを提供する Node バックエンド
  • ui: React フロントエンド
  • components: サードパーティノードとの統合

必須条件

  • PNPM をインストール
    npm i -g pnpm
    

セットアップ

  1. リポジトリをクローン

    git clone https://github.com/FlowiseAI/Flowise.git
    
  2. リポジトリフォルダに移動

    cd Flowise
    
  3. すべてのモジュールの依存関係をインストール:

    pnpm install
    
  4. すべてのコードをビルド:

    pnpm build
    
  5. アプリを起動:

    pnpm start
    

    http://localhost:3000 でアプリにアクセスできるようになりました

  6. 開発用ビルド:

    • .env ファイルを作成し、packages/uiVITE_PORT を指定する(.env.example を参照)

    • .env ファイルを作成し、packages/serverPORT を指定する(.env.example を参照)

    • 実行

      pnpm dev
      

    コードの変更は http://localhost:8080 に自動的にアプリをリロードします

🔒 認証

アプリレベルの認証を有効にするには、 FLOWISE_USERNAMEFLOWISE_PASSWORDpackages/server.env ファイルに追加します:

FLOWISE_USERNAME=user
FLOWISE_PASSWORD=1234

🌱 環境変数

Flowise は、インスタンスを設定するためのさまざまな環境変数をサポートしています。packages/server フォルダ内の .env ファイルで以下の変数を指定することができる。続きを読む

📖 ドキュメント

Flowise ドキュメント

🌐 セルフホスト

お客様の既存インフラに Flowise をセルフホストでデプロイ、様々なデプロイをサポートします

☁️ クラウドホスト

Flowise Cloud の使い方を始める

🙋 サポート

ご質問、問題提起、新機能のご要望は、discussionまでお気軽にどうぞ

🙌 コントリビュート

これらの素晴らしい貢献者に感謝します

コントリビューティングガイドを参照してください。質問や問題があれば、Discord までご連絡ください。 Star History Chart

📄 ライセンス

このリポジトリのソースコードは、Apache License Version 2.0の下で利用可能です。