AI Agent Hub
AI エージェント / プラグイン情報メディア
← 一覧へ
Flowise
OTHER

Flowise

Flowise

ノーコード UI でドラッグ&ドロップにより AI エージェントとマルチエージェントワークフローを視覚的に設計・構築できるプラットフォーム。LangChain や RAG など複数の LLM フレームワークに対応し、誰でも複雑なエージェント系統図を実装可能。

原文: Build AI Agents, Visually
#ノーコード#ビジュアルビルダー#マルチエージェント#agentic-ai#agentic-workflow#agents#artificial-intelligence#chatbot#chatgpt#javascript#langchain#large-language-models
REPO STATS

リポジトリ統計

⭐ Stars
52.7k
🍴 Forks
24.3k
⚠️ Open Issues
837
🌿 Language
TypeScript
📄 License
NOASSERTION
🕒 最終更新
2026.05.09 (2日前)
📅 公開日
2023.03.31
🌿 Branch
main
README

ドキュメント

— AI による自動翻訳 (2026.05.12 更新)

AI Agents を視覚的に構築します

📚 目次

⚡クイックスタート

NodeJS >= 20.0.0 をダウンロードしてインストールしてください

  1. Flowise をインストールします

    npm install -g flowise
  2. Flowise を起動します

    npx flowise start
  3. http://localhost:3000 を開いてください

🐳 Docker

Docker Compose

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

Docker イメージ

  1. イメージをローカルで構築します:

    docker build --no-cache -t flowise .
  2. イメージを実行します:

    docker run -d --name flowise -p 3000:3000 flowise
  3. イメージを停止します:

    docker stop flowise

👨‍💻 開発者

Flowise は単一のモノリポジトリに 3 つの異なるモジュールがあります。

  • server: API ロジックを提供する Node バックエンド
  • ui: React フロントエンド
  • components: サードパーティノード統合
  • api-documentation: express から自動生成された swagger-ui API ドキュメント

前提条件

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

セットアップ

  1. リポジトリをクローンします:

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

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

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

    pnpm build
    終了コード 134 (JavaScript ヒープメモリ不足) 上記の `build` スクリプト実行時にこのエラーが発生した場合は、Node.js ヒープサイズを増やして再度スクリプトを実行してください:
    # macOS / Linux / Git Bash
    export NODE_OPTIONS="--max-old-space-size=4096"
    
    # Windows PowerShell
    $env:NODE_OPTIONS="--max-old-space-size=4096"
    
    # Windows CMD
    set NODE_OPTIONS=--max-old-space-size=4096

    その後、実行してください:

    pnpm build
  5. アプリを起動します:

    pnpm start

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

  6. 開発ビルドの場合:

    • packages/ui.env ファイルを作成し、VITE_PORT を指定してください (.env.example を参照)

    • packages/server.env ファイルを作成し、PORT を指定してください (.env.example を参照)

    • 実行:

      pnpm dev

    コード変更があると、http://localhost:8080 でアプリは自動的にリロードされます。

🌱 環境変数

Flowise はインスタンスを構成するためのさまざまな環境変数をサポートしています。packages/server フォルダ内の .env ファイルで以下の変数を指定できます。詳細

📖 ドキュメント

Flowise ドキュメントはこちらで確認できます。

🌐 セルフホスト

Flowise をセルフホスト展開で既存のインフラストラクチャにデプロイできます。様々なデプロイメント方法をサポートしています

☁️ Flowise Cloud

Flowise Cloud を始めましょう。

🙋 サポート

Discussion でお気軽に質問、問題報告、新機能リクエストをお送りください。

🙌 貢献

素晴らしいコントリビューターの皆様に感謝いたします



Contributing Guide をご覧ください。ご質問や問題がある場合は、Discord でお気軽にお問い合わせください。

Star History Chart

📄 ライセンス

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

— GitHub から取得した原文(一部省略の場合あり)

Build AI Agents, Visually

📚 Table of Contents

⚡Quick Start

Download and Install NodeJS >= 20.0.0

  1. Install Flowise

    npm install -g flowise
  2. Start Flowise

    npx flowise start
  3. Open http://localhost:3000

🐳 Docker

Docker Compose

  1. Clone the Flowise project
  2. Go to docker folder at the root of the project
  3. Copy .env.example file, paste it into the same location, and rename to .env file
  4. docker compose up -d
  5. Open http://localhost:3000
  6. You can bring the containers down by docker compose stop

Docker Image

  1. Build the image locally:

    docker build --no-cache -t flowise .
  2. Run image:

    docker run -d --name flowise -p 3000:3000 flowise
  3. Stop image:

    docker stop flowise

👨‍💻 Developers

Flowise has 3 different modules in a single mono repository.

  • server: Node backend to serve API logics
  • ui: React frontend
  • components: Third-party nodes integrations
  • api-documentation: Auto-generated swagger-ui API docs from express

Prerequisite

  • Install PNPM
    npm i -g pnpm

Setup

  1. Clone the repository:

    git clone https://github.com/FlowiseAI/Flowise.git
  2. Go into repository folder:

    cd Flowise
  3. Install all dependencies of all modules:

    pnpm install
  4. Build all the code:

    pnpm build
    Exit code 134 (JavaScript heap out of memory) If you get this error when running the above `build` script, try increasing the Node.js heap size and run the script again:
    # macOS / Linux / Git Bash
    export NODE_OPTIONS="--max-old-space-size=4096"
    
    # Windows PowerShell
    $env:NODE_OPTIONS="--max-old-space-size=4096"
    
    # Windows CMD
    set NODE_OPTIONS=--max-old-space-size=4096

    Then run:

    pnpm build
  5. Start the app:

    pnpm start

    You can now access the app on http://localhost:3000

  6. For development build:

    • Create .env file and specify the VITE_PORT (refer to .env.example) in packages/ui

    • Create .env file and specify the PORT (refer to .env.example) in packages/server

    • Run:

      pnpm dev

    Any code changes will reload the app automatically on http://localhost:8080

🌱 Env Variables

Flowise supports different environment variables to configure your instance. You can specify the following variables in the .env file inside packages/server folder. Read more

📖 Documentation

You can view the Flowise Docs here

🌐 Self Host

Deploy Flowise self-hosted in your existing infrastructure, we support various deployments

☁️ Flowise Cloud

Get Started with Flowise Cloud.

🙋 Support

Feel free to ask any questions, raise problems, and request new features in Discussion.

🙌 Contributing

Thanks go to these awesome contributors



See Contributing Guide. Reach out to us at Discord if you have any questions or issues.

Star History Chart

📄 License

Source code in this repository is made available under the Apache License Version 2.0.

RELATED

同じカテゴリの他のツール