diff --git a/.devcontainer/post_create_command.sh b/.devcontainer/post_create_command.sh
index c25bde87b0..39a653953e 100755
--- a/.devcontainer/post_create_command.sh
+++ b/.devcontainer/post_create_command.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-npm add -g pnpm@10.13.1
+npm add -g pnpm@10.15.0
cd web && pnpm install
pipx install uv
diff --git a/.github/actions/setup-uv/action.yml b/.github/actions/setup-uv/action.yml
deleted file mode 100644
index 6990f6becf..0000000000
--- a/.github/actions/setup-uv/action.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: Setup UV and Python
-
-inputs:
- python-version:
- description: Python version to use and the UV installed with
- required: true
- default: '3.12'
- uv-version:
- description: UV version to set up
- required: true
- default: '0.8.9'
- uv-lockfile:
- description: Path to the UV lockfile to restore cache from
- required: true
- default: ''
- enable-cache:
- required: true
- default: true
-
-runs:
- using: composite
- steps:
- - name: Set up Python ${{ inputs.python-version }}
- uses: actions/setup-python@v5
- with:
- python-version: ${{ inputs.python-version }}
-
- - name: Install uv
- uses: astral-sh/setup-uv@v6
- with:
- version: ${{ inputs.uv-version }}
- python-version: ${{ inputs.python-version }}
- enable-cache: ${{ inputs.enable-cache }}
- cache-dependency-glob: ${{ inputs.uv-lockfile }}
diff --git a/.github/workflows/api-tests.yml b/.github/workflows/api-tests.yml
index 63d681e7ed..28ef67a133 100644
--- a/.github/workflows/api-tests.yml
+++ b/.github/workflows/api-tests.yml
@@ -33,10 +33,11 @@ jobs:
persist-credentials: false
- name: Setup UV and Python
- uses: ./.github/actions/setup-uv
+ uses: astral-sh/setup-uv@v6
with:
+ enable-cache: true
python-version: ${{ matrix.python-version }}
- uv-lockfile: api/uv.lock
+ cache-dependency-glob: api/uv.lock
- name: Check UV lockfile
run: uv lock --project api --check
diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml
index dada6229db..2c9cee2140 100644
--- a/.github/workflows/autofix.yml
+++ b/.github/workflows/autofix.yml
@@ -2,6 +2,7 @@ name: autofix.ci
on:
workflow_call:
pull_request:
+ branches: [ "main" ]
push:
branches: [ "main" ]
permissions:
@@ -15,7 +16,9 @@ jobs:
- uses: actions/checkout@v4
# Use uv to ensure we have the same ruff version in CI and locally.
- - uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f
+ - uses: astral-sh/setup-uv@v6
+ with:
+ python-version: "3.12"
- run: |
cd api
uv sync --dev
diff --git a/.github/workflows/db-migration-test.yml b/.github/workflows/db-migration-test.yml
index 5181546b4a..e8ff85e95c 100644
--- a/.github/workflows/db-migration-test.yml
+++ b/.github/workflows/db-migration-test.yml
@@ -25,9 +25,11 @@ jobs:
persist-credentials: false
- name: Setup UV and Python
- uses: ./.github/actions/setup-uv
+ uses: astral-sh/setup-uv@v6
with:
- uv-lockfile: api/uv.lock
+ enable-cache: true
+ python-version: "3.12"
+ cache-dependency-glob: api/uv.lock
- name: Install dependencies
run: uv sync --project api
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index 9aad9558b0..8d0ec35ca1 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -36,10 +36,11 @@ jobs:
- name: Setup UV and Python
if: steps.changed-files.outputs.any_changed == 'true'
- uses: ./.github/actions/setup-uv
+ uses: astral-sh/setup-uv@v6
with:
- uv-lockfile: api/uv.lock
enable-cache: false
+ python-version: "3.12"
+ cache-dependency-glob: api/uv.lock
- name: Install dependencies
if: steps.changed-files.outputs.any_changed == 'true'
diff --git a/.github/workflows/vdb-tests.yml b/.github/workflows/vdb-tests.yml
index 912267094b..f2ca09fba2 100644
--- a/.github/workflows/vdb-tests.yml
+++ b/.github/workflows/vdb-tests.yml
@@ -39,10 +39,11 @@ jobs:
remove_tool_cache: true
- name: Setup UV and Python
- uses: ./.github/actions/setup-uv
+ uses: astral-sh/setup-uv@v6
with:
+ enable-cache: true
python-version: ${{ matrix.python-version }}
- uv-lockfile: api/uv.lock
+ cache-dependency-glob: api/uv.lock
- name: Check UV lockfile
run: uv lock --project api --check
diff --git a/AGENTS.md b/AGENTS.md
new file mode 120000
index 0000000000..681311eb9c
--- /dev/null
+++ b/AGENTS.md
@@ -0,0 +1 @@
+CLAUDE.md
\ No newline at end of file
diff --git a/README.md b/README.md
index 7e566a0b2f..90da1d3def 100644
--- a/README.md
+++ b/README.md
@@ -107,74 +107,6 @@ Monitor and analyze application logs and performance over time. You could contin
**7. Backend-as-a-Service**:
All of Dify's offerings come with corresponding APIs, so you could effortlessly integrate Dify into your own business logic.
-## Feature Comparison
-
-
-
-
Feature
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
Programming Approach
-
API + App-oriented
-
Python Code
-
App-oriented
-
API-oriented
-
-
-
Supported LLMs
-
Rich Variety
-
Rich Variety
-
Rich Variety
-
OpenAI-only
-
-
-
RAG Engine
-
✅
-
✅
-
✅
-
✅
-
-
-
Agent
-
✅
-
✅
-
❌
-
✅
-
-
-
Workflow
-
✅
-
❌
-
✅
-
❌
-
-
-
Observability
-
✅
-
✅
-
❌
-
❌
-
-
-
Enterprise Feature (SSO/Access control)
-
✅
-
❌
-
❌
-
❌
-
-
-
Local Deployment
-
✅
-
✅
-
✅
-
❌
-
-
-
## Using Dify
- **Cloud **
diff --git a/README_AR.md b/README_AR.md
index 044ced98ed..2451757ab5 100644
--- a/README_AR.md
+++ b/README_AR.md
@@ -68,74 +68,6 @@
**7.الواجهة الخلفية (Backend) كخدمة**: تأتي جميع عروض Dify مع APIs مطابقة، حتى يمكنك دمج Dify بسهولة في منطق أعمالك الخاص.
-## مقارنة الميزات
-
-
-
-
الميزة
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
نهج البرمجة
-
موجّه لـ تطبيق + واجهة برمجة تطبيق (API)
-
برمجة Python
-
موجه لتطبيق
-
واجهة برمجة تطبيق (API)
-
-
-
LLMs المدعومة
-
تنوع غني
-
تنوع غني
-
تنوع غني
-
فقط OpenAI
-
-
-
محرك RAG
-
✅
-
✅
-
✅
-
✅
-
-
-
الوكيل
-
✅
-
✅
-
❌
-
✅
-
-
-
سير العمل
-
✅
-
❌
-
✅
-
❌
-
-
-
الملاحظة
-
✅
-
✅
-
❌
-
❌
-
-
-
ميزات الشركات (SSO / مراقبة الوصول)
-
✅
-
❌
-
❌
-
❌
-
-
-
نشر محلي
-
✅
-
✅
-
✅
-
❌
-
-
-
## استخدام Dify
- **سحابة **
diff --git a/README_BN.md b/README_BN.md
index f5a19ab434..ef24dea171 100644
--- a/README_BN.md
+++ b/README_BN.md
@@ -106,74 +106,6 @@ LLM ফাংশন কলিং বা ReAct উপর ভিত্তি ক
**7. ব্যাকএন্ড-অ্যাজ-এ-সার্ভিস**:
ডিফাই-এর সমস্ত অফার সংশ্লিষ্ট API-সহ আছে, যাতে আপনি অনায়াসে ডিফাইকে আপনার নিজস্ব বিজনেস লজিকে ইন্টেগ্রেট করতে পারেন।
-## বৈশিষ্ট্য তুলনা
-
-
-
## 使用 Dify
- **云 **
@@ -248,7 +180,7 @@ docker compose up -d
## Contributing
-对于那些想要贡献代码的人,请参阅我们的[贡献指南](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md)。
+对于那些想要贡献代码的人,请参阅我们的[贡献指南](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_CN.md)。
同时,请考虑通过社交媒体、活动和会议来支持 Dify 的分享。
> 我们正在寻找贡献者来帮助将 Dify 翻译成除了中文和英文之外的其他语言。如果您有兴趣帮助,请参阅我们的[i18n README](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md)获取更多信息,并在我们的[Discord 社区服务器](https://discord.gg/8Tpq4AcN9c)的`global-users`频道中留言。
diff --git a/README_DE.md b/README_DE.md
index 88c36019e3..a08fe63d4f 100644
--- a/README_DE.md
+++ b/README_DE.md
@@ -106,74 +106,6 @@ Sie können Agenten basierend auf LLM Function Calling oder ReAct definieren und
**7. Backend-as-a-Service**:
Alle Dify-Angebote kommen mit entsprechenden APIs, sodass Sie Dify mühelos in Ihre eigene Geschäftslogik integrieren können.
-## Vergleich der Merkmale
-
-
-
-
Feature
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
Programming Approach
-
API + App-oriented
-
Python Code
-
App-oriented
-
API-oriented
-
-
-
Supported LLMs
-
Rich Variety
-
Rich Variety
-
Rich Variety
-
OpenAI-only
-
-
-
RAG Engine
-
✅
-
✅
-
✅
-
✅
-
-
-
Agent
-
✅
-
✅
-
❌
-
✅
-
-
-
Workflow
-
✅
-
❌
-
✅
-
❌
-
-
-
Observability
-
✅
-
✅
-
❌
-
❌
-
-
-
Enterprise Feature (SSO/Access control)
-
✅
-
❌
-
❌
-
❌
-
-
-
Local Deployment
-
✅
-
✅
-
✅
-
❌
-
-
-
## Dify verwenden
- **Cloud **
@@ -241,7 +173,7 @@ Stellen Sie Dify mit einem Klick in AKS bereit, indem Sie [Azure Devops Pipeline
## Contributing
-Falls Sie Code beitragen möchten, lesen Sie bitte unseren [Contribution Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md). Gleichzeitig bitten wir Sie, Dify zu unterstützen, indem Sie es in den sozialen Medien teilen und auf Veranstaltungen und Konferenzen präsentieren.
+Falls Sie Code beitragen möchten, lesen Sie bitte unseren [Contribution Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_DE.md). Gleichzeitig bitten wir Sie, Dify zu unterstützen, indem Sie es in den sozialen Medien teilen und auf Veranstaltungen und Konferenzen präsentieren.
> Wir suchen Mitwirkende, die dabei helfen, Dify in weitere Sprachen zu übersetzen – außer Mandarin oder Englisch. Wenn Sie Interesse an einer Mitarbeit haben, lesen Sie bitte die [i18n README](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md) für weitere Informationen und hinterlassen Sie einen Kommentar im `global-users`-Kanal unseres [Discord Community Servers](https://discord.gg/8Tpq4AcN9c).
diff --git a/README_ES.md b/README_ES.md
index bc3b25f2d1..d8fdbf54e6 100644
--- a/README_ES.md
+++ b/README_ES.md
@@ -79,74 +79,6 @@ Supervisa y analiza registros de aplicaciones y rendimiento a lo largo del tiemp
**7. Backend como servicio**:
Todas las ofertas de Dify vienen con APIs correspondientes, por lo que podrías integrar Dify sin esfuerzo en tu propia lógica empresarial.
-## Comparación de características
-
-
-
-
Característica
-
Dify.AI
-
LangChain
-
Flowise
-
API de Asistentes de OpenAI
-
-
-
Enfoque de programación
-
API + orientado a la aplicación
-
Código Python
-
Orientado a la aplicación
-
Orientado a la API
-
-
-
LLMs admitidos
-
Gran variedad
-
Gran variedad
-
Gran variedad
-
Solo OpenAI
-
-
-
Motor RAG
-
✅
-
✅
-
✅
-
✅
-
-
-
Agente
-
✅
-
✅
-
❌
-
✅
-
-
-
Flujo de trabajo
-
✅
-
❌
-
✅
-
❌
-
-
-
Observabilidad
-
✅
-
✅
-
❌
-
❌
-
-
-
Característica empresarial (SSO/Control de acceso)
-
✅
-
❌
-
❌
-
❌
-
-
-
Implementación local
-
✅
-
✅
-
✅
-
❌
-
-
-
## Usando Dify
- **Nube **
@@ -238,7 +170,7 @@ Implementa Dify en AKS con un clic usando [Azure Devops Pipeline Helm Chart by @
## Contribuir
-Para aquellos que deseen contribuir con código, consulten nuestra [Guía de contribución](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md).
+Para aquellos que deseen contribuir con código, consulten nuestra [Guía de contribución](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_ES.md).
Al mismo tiempo, considera apoyar a Dify compartiéndolo en redes sociales y en eventos y conferencias.
> Estamos buscando colaboradores para ayudar con la traducción de Dify a idiomas que no sean el mandarín o el inglés. Si estás interesado en ayudar, consulta el [README de i18n](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md) para obtener más información y déjanos un comentario en el canal `global-users` de nuestro [Servidor de Comunidad en Discord](https://discord.gg/8Tpq4AcN9c).
diff --git a/README_FR.md b/README_FR.md
index 7521753100..7474ea50c2 100644
--- a/README_FR.md
+++ b/README_FR.md
@@ -79,74 +79,6 @@ Surveillez et analysez les journaux d'application et les performances au fil du
**7. Backend-as-a-Service** :
Toutes les offres de Dify sont accompagnées d'API correspondantes, vous permettant d'intégrer facilement Dify dans votre propre logique métier.
-## Comparaison des fonctionnalités
-
-
-
## Utiliser Dify
- **Cloud **
@@ -236,7 +168,7 @@ Déployez Dify sur AKS en un clic en utilisant [Azure Devops Pipeline Helm Chart
## Contribuer
-Pour ceux qui souhaitent contribuer du code, consultez notre [Guide de contribution](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md).
+Pour ceux qui souhaitent contribuer du code, consultez notre [Guide de contribution](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_FR.md).
Dans le même temps, veuillez envisager de soutenir Dify en le partageant sur les réseaux sociaux et lors d'événements et de conférences.
> Nous recherchons des contributeurs pour aider à traduire Dify dans des langues autres que le mandarin ou l'anglais. Si vous êtes intéressé à aider, veuillez consulter le [README i18n](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md) pour plus d'informations, et laissez-nous un commentaire dans le canal `global-users` de notre [Serveur communautaire Discord](https://discord.gg/8Tpq4AcN9c).
diff --git a/README_JA.md b/README_JA.md
index 3427a86b79..a782849f6e 100644
--- a/README_JA.md
+++ b/README_JA.md
@@ -80,74 +80,6 @@ LLM Function CallingやReActに基づくエージェントの定義が可能で
**7. Backend-as-a-Service**:
すべての機能はAPIを提供されており、Difyを自分のビジネスロジックに簡単に統合できます。
-## 機能比較
-
-
-
-
機能
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
プログラミングアプローチ
-
API + アプリ指向
-
Pythonコード
-
アプリ指向
-
API指向
-
-
-
サポートされているLLM
-
バラエティ豊か
-
バラエティ豊か
-
バラエティ豊か
-
OpenAIのみ
-
-
-
RAGエンジン
-
✅
-
✅
-
✅
-
✅
-
-
-
エージェント
-
✅
-
✅
-
❌
-
✅
-
-
-
ワークフロー
-
✅
-
❌
-
✅
-
❌
-
-
-
観測性
-
✅
-
✅
-
❌
-
❌
-
-
-
エンタープライズ機能(SSO/アクセス制御)
-
✅
-
❌
-
❌
-
❌
-
-
-
ローカル展開
-
✅
-
✅
-
✅
-
❌
-
-
-
## Difyの使用方法
- **クラウド **
@@ -237,7 +169,7 @@ docker compose up -d
## 貢献
-コードに貢献したい方は、[Contribution Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md)を参照してください。
+コードに貢献したい方は、[Contribution Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_JA.md)を参照してください。
同時に、DifyをSNSやイベント、カンファレンスで共有してサポートしていただけると幸いです。
> Difyを英語または中国語以外の言語に翻訳してくれる貢献者を募集しています。興味がある場合は、詳細については[i18n README](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md)を参照してください。また、[Discordコミュニティサーバー](https://discord.gg/8Tpq4AcN9c)の`global-users`チャンネルにコメントを残してください。
diff --git a/README_KL.md b/README_KL.md
index 252a2b6db5..93da9a6140 100644
--- a/README_KL.md
+++ b/README_KL.md
@@ -79,74 +79,6 @@ Monitor and analyze application logs and performance over time. You could contin
**7. Backend-as-a-Service**:
All of Dify's offerings come with corresponding APIs, so you could effortlessly integrate Dify into your own business logic.
-## Feature Comparison
-
-
-
-
Feature
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
Programming Approach
-
API + App-oriented
-
Python Code
-
App-oriented
-
API-oriented
-
-
-
Supported LLMs
-
Rich Variety
-
Rich Variety
-
Rich Variety
-
OpenAI-only
-
-
-
RAG Engine
-
✅
-
✅
-
✅
-
✅
-
-
-
Agent
-
✅
-
✅
-
❌
-
✅
-
-
-
Workflow
-
✅
-
❌
-
✅
-
❌
-
-
-
Observability
-
✅
-
✅
-
❌
-
❌
-
-
-
Enterprise Feature (SSO/Access control)
-
✅
-
❌
-
❌
-
❌
-
-
-
Local Deployment
-
✅
-
✅
-
✅
-
❌
-
-
-
## Using Dify
- **Cloud **
diff --git a/README_KR.md b/README_KR.md
index 278e3f6c33..ec28cc0f61 100644
--- a/README_KR.md
+++ b/README_KR.md
@@ -73,74 +73,6 @@ LLM 함수 호출 또는 ReAct를 기반으로 에이전트를 정의하고 에
**7. Backend-as-a-Service**:
Dify의 모든 제품에는 해당 API가 함께 제공되므로 Dify를 자신의 비즈니스 로직에 쉽게 통합할 수 있습니다.
-## 기능 비교
-
-
-
-
기능
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
프로그래밍 접근 방식
-
API + 앱 중심
-
Python 코드
-
앱 중심
-
API 중심
-
-
-
지원되는 LLMs
-
다양한 종류
-
다양한 종류
-
다양한 종류
-
OpenAI 전용
-
-
-
RAG 엔진
-
✅
-
✅
-
✅
-
✅
-
-
-
에이전트
-
✅
-
✅
-
❌
-
✅
-
-
-
워크플로우
-
✅
-
❌
-
✅
-
❌
-
-
-
가시성
-
✅
-
✅
-
❌
-
❌
-
-
-
기업용 기능 (SSO/접근 제어)
-
✅
-
❌
-
❌
-
❌
-
-
-
로컬 배포
-
✅
-
✅
-
✅
-
❌
-
-
-
## Dify 사용하기
- **클라우드 **
@@ -230,7 +162,7 @@ Dify를 Kubernetes에 배포하고 프리미엄 스케일링 설정을 구성했
## 기여
-코드에 기여하고 싶은 분들은 [기여 가이드](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md)를 참조하세요.
+코드에 기여하고 싶은 분들은 [기여 가이드](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_KR.md)를 참조하세요.
동시에 Dify를 소셜 미디어와 행사 및 컨퍼런스에 공유하여 지원하는 것을 고려해 주시기 바랍니다.
> 우리는 Dify를 중국어나 영어 이외의 언어로 번역하는 데 도움을 줄 수 있는 기여자를 찾고 있습니다. 도움을 주고 싶으시다면 [i18n README](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md)에서 더 많은 정보를 확인하시고 [Discord 커뮤니티 서버](https://discord.gg/8Tpq4AcN9c)의 `global-users` 채널에 댓글을 남겨주세요.
diff --git a/README_PT.md b/README_PT.md
index 8bff880728..da8f354a49 100644
--- a/README_PT.md
+++ b/README_PT.md
@@ -79,74 +79,6 @@ Monitore e analise os registros e o desempenho do aplicativo ao longo do tempo.
**7. Backend como Serviço**:
Todas os recursos do Dify vêm com APIs correspondentes, permitindo que você integre o Dify sem esforço na lógica de negócios da sua empresa.
-## Comparação de recursos
-
-
-
-
Recurso
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
Abordagem de Programação
-
Orientada a API + Aplicativo
-
Código Python
-
Orientada a Aplicativo
-
Orientada a API
-
-
-
LLMs Suportados
-
Variedade Rica
-
Variedade Rica
-
Variedade Rica
-
Apenas OpenAI
-
-
-
RAG Engine
-
✅
-
✅
-
✅
-
✅
-
-
-
Agente
-
✅
-
✅
-
❌
-
✅
-
-
-
Workflow
-
✅
-
❌
-
✅
-
❌
-
-
-
Observabilidade
-
✅
-
✅
-
❌
-
❌
-
-
-
Recursos Empresariais (SSO/Controle de Acesso)
-
✅
-
❌
-
❌
-
❌
-
-
-
Implantação Local
-
✅
-
✅
-
✅
-
❌
-
-
-
## Usando o Dify
- **Nuvem **
@@ -236,7 +168,7 @@ Implante o Dify no AKS com um clique usando [Azure Devops Pipeline Helm Chart by
## Contribuindo
-Para aqueles que desejam contribuir com código, veja nosso [Guia de Contribuição](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md).
+Para aqueles que desejam contribuir com código, veja nosso [Guia de Contribuição](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_PT.md).
Ao mesmo tempo, considere apoiar o Dify compartilhando-o nas redes sociais e em eventos e conferências.
> Estamos buscando contribuidores para ajudar na tradução do Dify para idiomas além de Mandarim e Inglês. Se você tiver interesse em ajudar, consulte o [README i18n](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md) para mais informações e deixe-nos um comentário no canal `global-users` em nosso [Servidor da Comunidade no Discord](https://discord.gg/8Tpq4AcN9c).
diff --git a/README_SI.md b/README_SI.md
index be8c6320fb..c20dc3484f 100644
--- a/README_SI.md
+++ b/README_SI.md
@@ -103,74 +103,6 @@ Spremljajte in analizirajte dnevnike aplikacij in učinkovitost skozi čas. Pozi
**7. Backend-as-a-Service**:
AVse ponudbe Difyja so opremljene z ustreznimi API-ji, tako da lahko Dify brez težav integrirate v svojo poslovno logiko.
-## Primerjava Funkcij
-
-
-
-
Funkcija
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
Programski pristop
-
API + usmerjeno v aplikacije
-
Python koda
-
Usmerjeno v aplikacije
-
Usmerjeno v API
-
-
-
Podprti LLM-ji
-
Bogata izbira
-
Bogata izbira
-
Bogata izbira
-
Samo OpenAI
-
-
-
RAG pogon
-
✅
-
✅
-
✅
-
✅
-
-
-
Agent
-
✅
-
✅
-
❌
-
✅
-
-
-
Potek dela
-
✅
-
❌
-
✅
-
❌
-
-
-
Spremljanje
-
✅
-
✅
-
❌
-
❌
-
-
-
Funkcija za podjetja (SSO/nadzor dostopa)
-
✅
-
❌
-
❌
-
❌
-
-
-
Lokalna namestitev
-
✅
-
✅
-
✅
-
❌
-
-
-
## Uporaba Dify
- **Cloud **
diff --git a/README_TR.md b/README_TR.md
index e54b1f4589..21df0d1605 100644
--- a/README_TR.md
+++ b/README_TR.md
@@ -74,74 +74,6 @@ Uygulama loglarını ve performans metriklerini zaman içinde izleme ve analiz e
**7. Hizmet Olarak Backend**:
Dify'ın tüm özellikleri ilgili API'lerle birlikte gelir, böylece Dify'ı kendi iş mantığınıza kolayca entegre edebilirsiniz.
-## Özellik karşılaştırması
-
-
-
-
Özellik
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
Programlama Yaklaşımı
-
API + Uygulama odaklı
-
Python Kodu
-
Uygulama odaklı
-
API odaklı
-
-
-
Desteklenen LLM'ler
-
Zengin Çeşitlilik
-
Zengin Çeşitlilik
-
Zengin Çeşitlilik
-
Yalnızca OpenAI
-
-
-
RAG Motoru
-
✅
-
✅
-
✅
-
✅
-
-
-
Ajan
-
✅
-
✅
-
❌
-
✅
-
-
-
İş Akışı
-
✅
-
❌
-
✅
-
❌
-
-
-
Gözlemlenebilirlik
-
✅
-
✅
-
❌
-
❌
-
-
-
Kurumsal Özellikler (SSO/Erişim kontrolü)
-
✅
-
❌
-
❌
-
❌
-
-
-
Yerel Dağıtım
-
✅
-
✅
-
✅
-
❌
-
-
-
## Dify'ı Kullanma
- **Cloud **
@@ -229,7 +161,7 @@ Dify'ı bulut platformuna tek tıklamayla dağıtın [terraform](https://www.ter
## Katkıda Bulunma
-Kod katkısında bulunmak isteyenler için [Katkı Kılavuzumuza](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) bakabilirsiniz.
+Kod katkısında bulunmak isteyenler için [Katkı Kılavuzumuza](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_TR.md) bakabilirsiniz.
Aynı zamanda, lütfen Dify'ı sosyal medyada, etkinliklerde ve konferanslarda paylaşarak desteklemeyi düşünün.
> Dify'ı Mandarin veya İngilizce dışındaki dillere çevirmemize yardımcı olacak katkıda bulunanlara ihtiyacımız var. Yardımcı olmakla ilgileniyorsanız, lütfen daha fazla bilgi için [i18n README](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md) dosyasına bakın ve [Discord Topluluk Sunucumuzdaki](https://discord.gg/8Tpq4AcN9c) `global-users` kanalında bize bir yorum bırakın.
diff --git a/README_TW.md b/README_TW.md
index c41434771c..18d0724784 100644
--- a/README_TW.md
+++ b/README_TW.md
@@ -106,74 +106,6 @@ docker compose up -d
**7. 後端即服務**:
Dify 的所有功能都提供相應的 API,因此您可以輕鬆地將 Dify 整合到您自己的業務邏輯中。
-## 功能比較
-
-
-
-
功能
-
Dify.AI
-
LangChain
-
Flowise
-
OpenAI Assistants API
-
-
-
程式設計方法
-
API + 應用導向
-
Python 代碼
-
應用導向
-
API 導向
-
-
-
支援的 LLM 模型
-
豐富多樣
-
豐富多樣
-
豐富多樣
-
僅限 OpenAI
-
-
-
RAG 引擎
-
✅
-
✅
-
✅
-
✅
-
-
-
代理功能
-
✅
-
✅
-
❌
-
✅
-
-
-
工作流程
-
✅
-
❌
-
✅
-
❌
-
-
-
可觀察性
-
✅
-
✅
-
❌
-
❌
-
-
-
企業級功能 (SSO/存取控制)
-
✅
-
❌
-
❌
-
❌
-
-
-
本地部署
-
✅
-
✅
-
✅
-
❌
-
-
-
## 使用 Dify
- **雲端服務 **
@@ -241,7 +173,7 @@ Dify 的所有功能都提供相應的 API,因此您可以輕鬆地將 Dify
## 貢獻
-對於想要貢獻程式碼的開發者,請參閱我們的[貢獻指南](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md)。
+對於想要貢獻程式碼的開發者,請參閱我們的[貢獻指南](https://github.com/langgenius/dify/blob/main/CONTRIBUTING_TW.md)。
同時,也請考慮透過在社群媒體和各種活動與會議上分享 Dify 來支持我們。
> 我們正在尋找貢獻者協助將 Dify 翻譯成中文和英文以外的語言。如果您有興趣幫忙,請查看 [i18n README](https://github.com/langgenius/dify/blob/main/web/i18n-config/README.md) 獲取更多資訊,並在我們的 [Discord 社群伺服器](https://discord.gg/8Tpq4AcN9c) 的 `global-users` 頻道留言給我們。
diff --git a/README_VI.md b/README_VI.md
index 8c5c333e8f..6d5305fb75 100644
--- a/README_VI.md
+++ b/README_VI.md
@@ -74,74 +74,6 @@ Giám sát và phân tích nhật ký và hiệu suất ứng dụng theo thời
**7. Backend-as-a-Service**:
Tất cả các dịch vụ của Dify đều đi kèm với các API tương ứng, vì vậy bạn có thể dễ dàng tích hợp Dify vào logic kinh doanh của riêng mình.
-## So sánh tính năng
-
-