* 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.3 KiB
English | 繁體中文 | 简体中文 | 日本語 | 한국어
AI 에이전트를 시각적으로 구축하세요
⚡빠른 시작 가이드
18.15.0 버전 이상의 NodeJS 다운로드 및 설치
-
Flowise 설치
npm install -g flowise -
Flowise 시작하기
npx flowise start사용자 이름과 비밀번호로 시작하기
npx flowise start --FLOWISE_USERNAME=user --FLOWISE_PASSWORD=1234 -
http://localhost:3000 URL 열기
🐳 도커(Docker)를 활용하여 시작하기
도커 컴포즈 활용
- 프로젝트의 최상위(root) 디렉토리에 있는
docker폴더로 이동하세요. .env.example파일을 복사한 후, 같은 경로에 붙여넣기 한 다음,.env로 이름을 변경합니다.docker compose up -d실행- http://localhost:3000 URL 열기
docker compose stop명령어를 통해 컨테이너를 종료시킬 수 있습니다.
도커 이미지 활용
-
로컬에서 이미지 빌드하기:
docker build --no-cache -t flowise . -
이미지 실행하기:
docker run -d --name flowise -p 3000:3000 flowise -
이미지 종료하기:
docker stop flowise
👨💻 개발자들을 위한 가이드
Flowise는 단일 리포지토리에 3개의 서로 다른 모듈이 있습니다.
server: API 로직을 제공하는 노드 백엔드ui: 리액트 프론트엔드components: 서드파티 노드 통합을 위한 컴포넌트
사전 설치 요건
- PNPM 설치하기
npm i -g pnpm
설치 및 설정
-
리포지토리 복제
git clone https://github.com/FlowiseAI/Flowise.git -
리포지토리 폴더로 이동
cd Flowise -
모든 모듈의 종속성 설치:
pnpm install -
모든 코드 빌드하기:
pnpm build -
애플리케이션 시작:
pnpm start이제 http://localhost:3000에서 애플리케이션에 접속할 수 있습니다.
-
개발 환경에서 빌드할 경우:
-
packages/ui경로에.env파일을 생성하고VITE_PORT(.env.example참조)를 지정합니다. -
packages/server경로에.env파일을 생성하고PORT(.env.example참조)를 지정합니다. -
실행하기
pnpm dev
코드가 변경되면 http://localhost:8080에서 자동으로 애플리케이션을 새로고침 합니다.
-
🔒 인증
애플리케이션 수준의 인증을 사용하려면 packages/server의 .env 파일에 FLOWISE_USERNAME 및 FLOWISE_PASSWORD를 추가합니다:
FLOWISE_USERNAME=user
FLOWISE_PASSWORD=1234
🌱 환경 변수
Flowise는 인스턴스 구성을 위한 다양한 환경 변수를 지원합니다. packages/server 폴더 내 .env 파일에 다양한 환경 변수를 지정할 수 있습니다. 자세히 보기
📖 공식 문서
🌐 자체 호스팅 하기
기존 인프라 환경에서 Flowise를 자체 호스팅으로 배포하세요. 다양한 배포 deployments 방법을 지원합니다.
☁️ 클라우드 호스팅 서비스
🙋 기술 지원
질문, 버그 리포팅, 새로운 기능 요청 등은 discussion 섹션에서 자유롭게 이야기 해주세요.
🙌 오픈소스 활동에 기여하기
다음과 같은 멋진 기여자들(contributors)에게 감사드립니다.
contributing guide를 살펴보세요. 디스코드 Discord 채널에서도 이슈나 질의응답을 진행하실 수 있습니다.
📄 라이센스
본 리포지토리의 소스코드는 Apache License Version 2.0 라이센스가 적용됩니다.

