freshcrate
Skin:/
Home > Frameworks > Flowise

Flowise

Build AI Agents, Visually

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

Build AI Agents, Visually

README

Build AI Agents, Visually

๐Ÿ“š Table of Contents

โšกQuick Start

Download and Install NodeJS >= 18.15.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.

Release History

VersionChangesUrgencyDate
flowise@3.1.2## What's Changed * Hardcoded CORS wildcard on TTS endpoint enables cross-origin credential abuse from any webpage by @christopherholland-workday in https://github.com/FlowiseAI/Flowise/pull/5901 * Additional Improvements to MCP Server Config security by @christopherholland-workday in https://github.com/FlowiseAI/Flowise/pull/5943 * fix: session cleanup when using mysql for storing sessions by @0xi4o in https://github.com/FlowiseAI/Flowise/pull/5984 * Fix Mass Assignment in Tools Endpoint High4/14/2026
flowise@3.1.1## What's Changed * Traversal env var by @christopherholland-workday in https://github.com/FlowiseAI/Flowise/pull/5962 * Fix/agentflow model parameters by @j-sanaa in https://github.com/FlowiseAI/Flowise/pull/5967 * fix: migrate Weaviate to weaviate-client v3 for agentKnowledgeVSEmbeddings compatibility (#5991) by @aayushbaluni in https://github.com/FlowiseAI/Flowise/pull/5993 * feat(agentflow): add Rich Text editor for Content Editing (FLOWISE-342) by @jocelynlin-wd in https://github.com/FlMedium3/23/2026
flowise@3.1.0## โš ๏ธ Breaking Changes ### HTTP security checks enabled by default Flowise now enables **HTTP security validation by default** to prevent requests to unsafe or internal domains. A built-in deny list blocks potentially dangerous domains (for example `localhost`, `127.0.0.1`, and other internal addresses) to mitigate SSRF and similar attacks. Two new environment variables control this behavior: ```bash # Enable/disable built-in security checks (default: true) HTTP_SECURITY_CHECK=tLow3/16/2026
flowise@3.0.13## What's Changed ## Nodes * Added global region for chatGoogleVertexAI by @chiragjagga in https://github.com/FlowiseAI/Flowise/pull/5581 * feat: add Rerankers from Azure by @Psylockz in https://github.com/FlowiseAI/Flowise/pull/5576 * feat: Enhance ChatCerebras integration (v3.0) by @sebastiand-cerebras in https://github.com/FlowiseAI/Flowise/pull/5508 * Feat/add endpointhost to AWSChatBedrock by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5642 * Feature/ChatCloudflareWorkLow2/3/2026
flowise@3.0.12## What's Changed ## Nodes * Chore/Disable Unstructure Folder by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5483 * feat: Add image upload support to ChatOpenRouter node by @aibysid in https://github.com/FlowiseAI/Flowise/pull/5471 * feat: Add structured JSON output support to Agent Node by @aibysid in https://github.com/FlowiseAI/Flowise/pull/5470 * feat/fix: Enhance ConversationalRetrievalToolAgent performance and fix bugs by @Nek-11 in https://github.com/FlowiseAI/FlowiseLow12/5/2025
flowise@3.0.11## โš ๏ธ Breaking Change โš ๏ธ The **Read/Write File Tools** functionality has been **permanently removed**. See [PR](https://github.com/FlowiseAI/Flowise/pull/5480) **Alternative:** Google Drive, Google Docs tools to write/read files --- * Chore/split docker workflows by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5432 * chore: fix typos in docker/worker/Dockerfile by @khanhkhanhlele in https://github.com/FlowiseAI/Flowise/pull/5435 * chore: fix typos in packages/componentLow11/16/2025
flowise@3.0.10## What's Changed ## Nodes * Adding Teradata VectorStore support in DocumentStore by @sshekhar1 in https://github.com/FlowiseAI/Flowise/pull/5159 * feat: Added acceptVariable to Qdrant Collection name by @HavardHomb in https://github.com/FlowiseAI/Flowise/pull/5373 * Feat/add thinking budget to gemini by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5395 * Chore/remove teradatasql by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5430 ## Core * Chore/product id Low11/6/2025
flowise@3.0.8## What's Changed ## Nodes * Feat/Gemini Built In Tools by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5215 * Feature - add Teradata MCP server by @vilashjagani in https://github.com/FlowiseAI/Flowise/pull/5002 * Feature/Update Loop Agentflow by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4957 * Add support for .default() on nested objects and arrays in SecureZodSchemaParser by @chungyau97 in https://github.com/FlowiseAI/Flowise/pull/5269 * feat: extend OpenAPLow10/8/2025
flowise@3.0.7## What's Changed * Bugfix/add validation for file path by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5211 * Bugfix/Create Index Chatflow Name by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5213 * feat: add gpt-5-chat-latest and gpt-4.1-mini to Azure OpenAI Node by @marvikomo in https://github.com/FlowiseAI/Flowise/pull/5212 * Release/3.0.7 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/5214 ## New Contributors * @marvikomo made their first contLow9/15/2025
flowise@3.0.6## What's Changed ## Nodes * feat: add JSONPathExtractor tool by @anatolyburtsev in https://github.com/FlowiseAI/Flowise/pull/5052 * Feature: Add SambaNova by @luisfucros in https://github.com/FlowiseAI/Flowise/pull/4961 * Feat/aws kendra vector search by @anatolyburtsev in https://github.com/FlowiseAI/Flowise/pull/5088 * Feat: add gpt oss models to aws bedrock by @anatolyburtsev in https://github.com/FlowiseAI/Flowise/pull/5122 * feat: add config override for langwatch to allow passinLow9/15/2025
flowise@3.0.5## What's Changed ## Nodes * Feat/support image for grok 4 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4869 * Added latest vertex models to models.json by @Stono in https://github.com/FlowiseAI/Flowise/pull/4837 * Refactor the modelLoader and fix a small bug by @Stono in https://github.com/FlowiseAI/Flowise/pull/4838 * Added region support to chatGoogleVertexAi by @Stono in https://github.com/FlowiseAI/Flowise/pull/4839 * fix: normalize Milvus similarity scores for thresLow8/11/2025
flowise@3.0.4## What's Changed ## Nodes * adding performance config option to the AWS ChatBedrock component by @cerashdan in https://github.com/FlowiseAI/Flowise/pull/4777 * feat: add thinking budget parameter support for ChatGoogleVertexAI by @EienYuki in https://github.com/FlowiseAI/Flowise/pull/4557 * Add Oxylabs Document Loader by @oxy-rostyslav in https://github.com/FlowiseAI/Flowise/pull/4625 ## Core * Optimize export import by @chungyau97 in https://github.com/FlowiseAI/Flowise/pull/4795 * Low7/11/2025
flowise@3.0.3## What's Changed ## Nodes * Chore/Google GenAI by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4742 * Feature/Safety settings to google genai by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4737 ## Core * Chore/Update issue templates and add new tools by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4687 * New Feature: Ability to change role for a workspace user. by @vinodkiran in https://github.com/FlowiseAI/Flowise/pull/4616 * Chore/API for AgeLow6/27/2025
flowise@3.0.2## What's Changed ## Nodes * feature/apiloader-ca-upload by @chungyau97 in https://github.com/FlowiseAI/Flowise/pull/4533 * Feature/Add teams, gmail, outlook tools by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4577 * Feat/add headers to custom mcp by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4581 * Feature/GoogleDocs by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4613 * feat: Add configurable system prompt to Condition Agent by @toi500 in httpLow6/12/2025
flowise@3.0.1## What's Changed โš ๏ธ**BREAKING CHANGE**: From v3.0.1 onwards, a new authentication method was introduced. Flowise uses a [Passport.js](https://www.passportjs.org/)-based authentication system with JWT tokens stored in secure HTTP-only cookies. This means existing users will need to set up a new admin account. Refer to [docs](https://docs.flowiseai.com/configuration/authorization/application) for more info. ## Nodes * Chore/Claude 4 by @HenryHengZJ in https://github.com/FlowiseAI/FlowisLow5/29/2025
flowise@3.0.0## What's Changed ## Nodes * added_o4mini_model by @aditya-deriv in https://github.com/FlowiseAI/Flowise/pull/4365 * feature/add-perplexity-node by @chungyau97 in https://github.com/FlowiseAI/Flowise/pull/4376 * Feature/added litellm component by @patrickreinan in https://github.com/FlowiseAI/Flowise/pull/4327 * Updated the Groq chat node and also Llama Index Groq node. #4383 by @adolfousier in https://github.com/FlowiseAI/Flowise/pull/4384 * Feature/add Deep Research V2 Template by @toiLow5/15/2025
flowise@2.2.8## What's Changed ## Nodes * Adds Mem0 Memory Node by @whysosaket in https://github.com/FlowiseAI/Flowise/pull/4213 * Add Detailed Streaming to the Tool Agent by @jonSuits in https://github.com/FlowiseAI/Flowise/pull/4155 * feat: Add Opik Tracer integration by @Lothiraldan in https://github.com/FlowiseAI/Flowise/pull/4194 * feat(Mem0): Add option to use Flowise Chat ID by @toi500 in https://github.com/FlowiseAI/Flowise/pull/4257 * Add new Llama 4 model options to Groq by @sunnymodi21 in Low4/28/2025
flowise@2.2.7-patch.1## What's Changed * Feature/Custom MCP by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4136 * Add Sequential Thinking MCP tool for structured problem-solving by @AsharibAli in https://github.com/FlowiseAI/Flowise/pull/4143 * Chore/update pnpm run dev by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4154 * Chore/update vite config by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4158 * [Fix] Change S3 logger to accept more authorization methods for AWS byLow3/14/2025
flowise@2.2.7## What's Changed * Feature/Add multi select option to composio by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4122 * Feature/MCP (Model Context Protocol) by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4134 * docs: add Traditional and Simplified Chinese README files by @appleboy in https://github.com/FlowiseAI/Flowise/pull/4132 * Release/2.2.7 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4135 ## New Contributors * @appleboy made their first conLow3/11/2025
flowise@2.2.6-hotfix.1## What's Changed * Fix for node-crashing "undefined (reading 'streaming')" error by @raffareis in https://github.com/FlowiseAI/Flowise/pull/4104 * Release/2.2.6-hotfix.1 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/4105 **Full Changelog**: https://github.com/FlowiseAI/Flowise/compare/flowise@2.2.6...flowise@2.2.6-hotfix.1Low2/28/2025
flowise@2.2.6## What's Changed ## Nodes * Update Gemini models as per the Gemini API Documentation. by @toi500 in https://github.com/FlowiseAI/Flowise/pull/3996 * Late Chunking support for Jina Embeddings by @gururise in https://github.com/FlowiseAI/Flowise/pull/4002 * o3-mini Adjustments. by @saatchi-david in https://github.com/FlowiseAI/Flowise/pull/4009 * feat: Add Arize & Phoenix Tracer Integration by @ialisaleh in https://github.com/FlowiseAI/Flowise/pull/4046 * Adding Tavily custom tool by @isLow2/28/2025
flowise@2.2.5## What's Changed ## Nodes * Feature: Add Jina AI Rerank Retriever by @nguyenhung10012003 in https://github.com/FlowiseAI/Flowise/pull/3898 * Add tenant and database configs for Chroma Cloud credentials by @itaismith in https://github.com/FlowiseAI/Flowise/pull/3872 * Update model names for deepseek components by @nguyenhung10012003 in https://github.com/FlowiseAI/Flowise/pull/3911 * Feature/Custom Function to Seq Agent by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3612 * Low2/4/2025
flowise@2.2.4## What's Changed ## Nodes * Feature/add nvdia nim by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3749 * Add `rerank-2` and `rerank-2-lite` for Voyage AI Rerank Retriever by @hans00 in https://github.com/FlowiseAI/Flowise/pull/3776 * Feature/Add Groq for followup prompts by @sunnymodi21 in https://github.com/FlowiseAI/Flowise/pull/3806 * Feature/update json loader to have dynamic metadata by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3811 * feat(follow-up/ollLow1/14/2025
flowise@2.2.3## What's Changed ## Node * IBM Watsonx LLM node by @eduardconstantin in https://github.com/FlowiseAI/Flowise/pull/3674 * feat: Add options to filter conversation history messages used in sequential LLM and Agent nodes by @jeanibarz in https://github.com/FlowiseAI/Flowise/pull/3653 * feat. add epub support #3629 by @Ajay-Satish-01 in https://github.com/FlowiseAI/Flowise/pull/3668 * Chore/Enhancement: Improve 'Require Approval' Description to Indicate MemoryAgent Dependency by @jeanibarz iLow12/23/2024
flowise@2.2.2## What's Changed ## Node * IBM Watsonx embeddings node by @eduardconstantin in https://github.com/FlowiseAI/Flowise/pull/3648 * Feature/Add dedicated agent memory nodes by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3649 * feat(models): add Llama 3.3 70B models to groqChat by @jeanibarz in https://github.com/FlowiseAI/Flowise/pull/3651 ## Core * Chore/Update multer path if blob storage path is set by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3609 * ChoreLow12/10/2024
flowise@2.2.1## What's Changed * fix/unable-to-upload-documents by @chungyau97 in https://github.com/FlowiseAI/Flowise/pull/3606 * Release/2.2.1 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3607 **Full Changelog**: https://github.com/FlowiseAI/Flowise/compare/flowise@2.2.0...flowise@2.2.1Low11/29/2024
flowise@2.2.0## What's Changed ## Nodes * Redis default port is 6379 by @tgmerritt in https://github.com/FlowiseAI/Flowise/pull/3548 * Added new gpt4o model and set "gpt 4o (latest)" as default model for ChatOpenAI node. by @saatchi-david in https://github.com/FlowiseAI/Flowise/pull/3543 * Feature/Extract Metadata Retriever by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3579 * Chore/models update by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3590 ## Core * Feature/Add Low11/28/2024
flowise@2.1.5## What's Changed * Bugfix/Allow analytics override config by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3520 * Feature/Add stripe toolkit by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3522 * Feature/Add support for state-based metadata filter to Retriever Tool by @serhiy-matoffo in https://github.com/FlowiseAI/Flowise/pull/3501 * Bugfix/Override config vars by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3524 * Bugfix/Query Runner already releasedLow11/19/2024
flowise@2.1.4## What's Changed ## Breaking Change: For API and Embed, Override Config is now disabled by default. User has to enable the properties they would like to override from the new Security tab on Flow Configuration. Refer to: https://docs.flowiseai.com/using-flowise/api#override-config ## Nodes * Add Cerebras Node and Credential by @tgmerritt in https://github.com/FlowiseAI/Flowise/pull/3377 * Add couchbase vectore store support by @prajwal-pai77 in https://github.com/FlowiseAI/Flowise/pullLow11/13/2024
flowise@2.1.3## What's Changed ## Nodes * Enable Filters in MongoDB Vector Search Retriever by @ghondar in https://github.com/FlowiseAI/Flowise/pull/3333 * [Feature] added Jina AI Embedding support by @definitelynotchirag in https://github.com/FlowiseAI/Flowise/pull/3355 * feat: Add Alibaba API credential and ChatAlibabaTongyi node by @definitelynotchirag in https://github.com/FlowiseAI/Flowise/pull/3360 * Added NeMo Guardrails Chat component by @patrickreinan in https://github.com/FlowiseAI/Flowise/pLow10/23/2024
flowise@2.1.2## What's Changed ## Nodes * chore: update unstructured API url and doc reference by @cragwolfe in https://github.com/FlowiseAI/Flowise/pull/3224 * Feature/add ability to specify dynamic metadata to jsonlines by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3238 * Chore/Groq Llama3.2 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3255 * LunaryAI automatic Thread and User tracking by @vincelwt in https://github.com/FlowiseAI/Flowise/pull/3233 * Updating models.jsLow10/9/2024
flowise@2.1.1## What's Changed * Chore/update flowise embed version to 2.0.0 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3205 * Bugfix/CodeInterpreter E2B Credential by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3206 * Release/2.1.0 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3207 * Bugfix/Add artifacts migration script to other database types by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3210 * Release/2.1.1 by @HenryHengZJ in https://githLow9/18/2024
flowise@2.1.0## What's Changed ## Node * added tls support to milvus by @Eyalm321 in https://github.com/FlowiseAI/Flowise/pull/3068 * Feature/Custom Retriever by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/3119 * Add chat model open ai proxy url params by @thanhtung100397 in https://github.com/FlowiseAI/Flowise/pull/3153 * feat: add support for custom overrideConfig for ChatflowTool by @mokeyish in https://github.com/FlowiseAI/Flowise/pull/3168 * Feature/Code Interpreter by @HenryHengZJLow9/17/2024
flowise@2.0.7## What's Changed * Add $flow to Variable Resolution in Flow Building Process by @raffareis in https://github.com/FlowiseAI/Flowise/pull/3075 * feature/introducting-conversational-retrieval-tool-agent by @niztal in https://github.com/FlowiseAI/Flowise/pull/2430 * Avoid hard-coding returnFalse and returnTrue handle fetching. by @mokeyish in https://github.com/FlowiseAI/Flowise/pull/3091 * Bugfix/prevent upsert when images are uploaded by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/puLow8/28/2024
flowise@2.0.6## What's Changed ## Nodes * Updated logo for singlestore by @apeng-singlestore in https://github.com/FlowiseAI/Flowise/pull/3018 * Added meilisearch retriever component by @MohamedYasserOaf in https://github.com/FlowiseAI/Flowise/pull/2824 * Meilisearch - Added metadata as filterable attributes and polling on enqueued tasks by @MohamedYasserOaf in https://github.com/FlowiseAI/Flowise/pull/3042 * Enhance Airtable Document Loader with Filter and Text Output by @raffareis in https://githubLow8/27/2024
flowise@2.0.5## What's Changed ## Nodes * Spider Search / Scrape as a Tool by @toi500 in https://github.com/FlowiseAI/Flowise/pull/2972 * Feature/Add base path to azure by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2984 * Feature/Add content and metadata key for qdrant by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2997 ## Core * Feature/Add ability to get vars from text input by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2986 * Release/2.0.5 by @HenryHeLow8/12/2024
flowise@2.0.4## What's Changed * Bugfix/Add langchainhub dependency by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2970 * Release/2.0.4 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2971 **Full Changelog**: https://github.com/FlowiseAI/Flowise/compare/flowise@2.0.3...flowise@2.0.4Low8/7/2024
flowise@2.0.3## What's Changed ## Nodes * OpenAI Model Updates by @saatchi-david in https://github.com/FlowiseAI/Flowise/pull/2956 * Add prompt template from langfuse by @cruz-lucas in https://github.com/FlowiseAI/Flowise/pull/2883 ## Core * Release/2.0.2 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2934 * Feature/Seq Agent Nodes Update by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2942 * Chore/Move @langchain/core dependency to components by @HenryHengZJ in https://Low8/7/2024
flowise@2.0.2## What's Changed ## Nodes * Chore/Add Groq Llama 3.1 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2860 * Feat/add s3 custom url by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2891 * Feat/update ollama for function calling by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2892 * Feature/AWS Bedrock Knowledge Bases retriever by @RPKosec in https://github.com/FlowiseAI/Flowise/pull/2905 * Update Perplexity AI Tool: BugFix Authorization and Update MoLow8/5/2024
flowise@2.0.1## What's Changed * Release/2.0.0 by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2844 * Bugfix/Move summarization as optional for multi agents by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2858 **Full Changelog**: https://github.com/FlowiseAI/Flowise/compare/flowise@2.0.0...flowise@2.0.1Low7/23/2024
flowise@2.0.0## Introducing Flowise v2.0 and Sequential Agentic Workflow The new agentic workflow allows you to: โ€ข Chain agents together โ€ข Loopback mechanisms โ€ข Human-in-the-Loop โ€ข Conditional branches 7 examples to help you get started with agentic workflows: - Agentic RAG: A self-improving RAG that checks the relevance of retrieved documents to the user's question. If the documents are found to be irrelevant, the agent will rephrase the question and loop back to retrieve a new set of documentsLow7/22/2024
flowise@1.8.4## What's Changed ## Nodes * Feature/FireCrawl by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2728 * Feature/Spider (open-source web scraper & crawler) by @WilliamEspegren in https://github.com/FlowiseAI/Flowise/pull/2738 * feat: Add limit parameter to Spider tool by @WilliamEspegren in https://github.com/FlowiseAI/Flowise/pull/2762 * Feat/added chattBaiduWenxin chat model by @Mubashirshariq in https://github.com/FlowiseAI/Flowise/pull/2752 * chore: Bump zep cloud sdk versiLow7/15/2024
flowise@1.8.3## What's Changed ## Nodes * Chore/models update by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2634 * Feature/Add filter to Postgres VectorStore by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2674 * Feature/Add multi query retriever by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2676 * Feature/Add Text Key to Pinecone by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2681 * Feature/Add tool choices to openai assistant by @HenryHengZJ Low6/26/2024
flowise@1.8.2## Breaking Change for Docker In `v1.8.2`, we updated the `Dockerfile` to use manual build steps, and from using `command` to `entrypoint`. See #2563 There might be error if you are running `docker compose` command using old `Dockerfile`: ``` cd Flowise/docker docker compose down docker compose up -d ``` User will need to update their existing repo to get the latest `Dockerfile`: ``` cd Flowise git pull cd docker docker compose down docker compose up -d ``` ## What's ChangedLow6/11/2024
flowise@1.8.1## What's Changed ## Nodes * Added Opensearch credential by @patrickreinan in https://github.com/FlowiseAI/Flowise/pull/2458 * Together AI llms by @jiabaow in https://github.com/FlowiseAI/Flowise/pull/2454 * Update Upstash Logo for White Background by @fahreddinozcan in https://github.com/FlowiseAI/Flowise/pull/2511 * Feat/Exa Search Tool by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2524 ## Core * Chore/upgrade llamaindex version by @vinodkiran in https://github.com/FlLow5/31/2024
flowise@1.8.0## What's Changed ## Nodes * [FEATURE] Added support for LocalAI Speech To Text configuration by @clates in https://github.com/FlowiseAI/Flowise/pull/2376 * Feature/Ability to omit all metadata keys using asterisk by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2401 * Add new openai model (GPT-4o ) in the assistant and models.json by @AsharibAli in https://github.com/FlowiseAI/Flowise/pull/2402 * Feat/add gemini flash by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/puLow5/21/2024
flowise@1.7.2## What's Changed * Bugfix/Escape column name on postgres migration indexing by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2342 * Fixes 2343 CSV error with no text splitter by @automaton82 in https://github.com/FlowiseAI/Flowise/pull/2344 * Bugfix/Credential mandatory field when preview chunks by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2356 * Bugfix/Save chunk's metadata by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2366 * Chore/Temporarily diLow5/9/2024
flowise@1.7.1## What's Changed ## Nodes * Chore/Update Mistral Ver by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2281 * Add batchSize parameter to Qdrant_VectorStores and QdrantUpsert_Vectoโ€ฆ by @mrabbah in https://github.com/FlowiseAI/Flowise/pull/2215 * Upstash Vector Integration by @fahreddinozcan in https://github.com/FlowiseAI/Flowise/pull/2284 * FEATURE: Adding File Upload to Unstructured Loader by @vinodkiran in https://github.com/FlowiseAI/Flowise/pull/2304 * Chore/Pinecone VersLow5/6/2024
flowise@1.6.6## What's Changed ## Nodes * Added bedrock cohere embed model requirements by @QuinnGT in https://github.com/FlowiseAI/Flowise/pull/2207 * Feature: Add pdfUsage parameter setting support to folderFiles by @louyongjiu in https://github.com/FlowiseAI/Flowise/pull/2211 * added llama 3 models to bedrock by @QuinnGT in https://github.com/FlowiseAI/Flowise/pull/2248 * Add Custom Dimensionality Support for OpenAI Embedding Components by @nstankov-bg in https://github.com/FlowiseAI/Flowise/pull/2Low4/25/2024
flowise@1.6.5## What's Changed ## Nodes * Feature/Update csv agent by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2143 * Feature/Buffer Memory SessionId by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2111 * Feature/Add topP to Azure by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2160 * Feature/add max iterations to agents by @HenryHengZJ in https://github.com/FlowiseAI/Flowise/pull/2161 ## Core * Chore/consistent services and error handlers by @ocflowiseaiLow4/13/2024

Dependencies & License Audit

Loading dependencies...

Similar Packages

simBuild, deploy, and orchestrate AI agents. Sim is the central intelligence layer for your AI workforce.v0.6.103
ai-project-templateStarter app for building AI SaaS (RAG, Agentic workflow) applicationsmaster@2026-05-01
swarmsThe Enterprise-Grade Production-Ready Multi-Agent Orchestration Framework. Website: https://swarms.ai6.8.1
AntennaSimSimulate antenna designs instantly in your browser using NEC2-powered, open-source software with WebAssembly and Docker support.main@2026-06-04
ClawRecipesSave 120+ Hours of Setup Pain (I did it for you) โ€“ Launch Your OpenClaw Agent Teams with 1 Command (15+ Recipes)v0.5.1

More in Frameworks

langchainThe agent engineering platform
deer-flowAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of ta
tqdmFast, Extensible Progress Meter
simBuild, deploy, and orchestrate AI agents. Sim is the central intelligence layer for your AI workforce.