[PR #5699] [MERGED] refactor: extract chat plugin to new repo #6954

Closed
opened 2026-03-23 23:17:26 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5699
Author: @appflowy
Created: 7/8/2024
Status: Merged
Merged: 7/8/2024
Merged by: @appflowy

Base: mainHead: fix_chat_bug


📝 Commits (8)

📊 Changes

40 files changed (+317 additions, -2385 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_bloc.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_ai_view.dart (+1 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+39 -23)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+16 -0)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+39 -23)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+17 -0)
📝 frontend/rust-lib/Cargo.lock (+46 -20)
📝 frontend/rust-lib/Cargo.toml (+7 -2)
📝 frontend/rust-lib/flowy-chat/Cargo.toml (+3 -2)
📝 frontend/rust-lib/flowy-chat/src/chat.rs (+1 -1)
📝 frontend/rust-lib/flowy-chat/src/chat_manager.rs (+5 -5)
📝 frontend/rust-lib/flowy-chat/src/entities.rs (+17 -1)
📝 frontend/rust-lib/flowy-chat/src/lib.rs (+1 -2)
frontend/rust-lib/flowy-chat/src/local_ai/chat_plugin.rs (+0 -129)
frontend/rust-lib/flowy-chat/src/local_ai/embedding_plugin.rs (+0 -50)
frontend/rust-lib/flowy-chat/src/local_ai/llm_chat.rs (+0 -315)
frontend/rust-lib/flowy-chat/src/local_ai/mod.rs (+0 -4)
📝 frontend/rust-lib/flowy-chat/src/middleware/chat_service_mw.rs (+77 -16)
frontend/rust-lib/flowy-chat/src/middleware/mod.rs (+1 -0)
📝 frontend/rust-lib/flowy-chat/src/notification.rs (+2 -0)

...and 20 more files

📄 Description

Move plugin code to plugin repo:https://github.com/AppFlowy-IO/AppFlowy-LocalAI


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/5699 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/8/2024 **Status:** ✅ Merged **Merged:** 7/8/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_chat_bug` --- ### 📝 Commits (8) - [`e7877af`](https://github.com/AppFlowy-IO/AppFlowy/commit/e7877af6435f093ddcf24156118ca8033eef4d19) chore: update ui - [`6cd3407`](https://github.com/AppFlowy-IO/AppFlowy/commit/6cd3407d20bcd4b823ef7bec5f48a24e501d892b) chore: update - [`e4f4a12`](https://github.com/AppFlowy-IO/AppFlowy/commit/e4f4a128be4dda63fa0bc8d5c02819e03eaf760a) chore: update - [`ffc7510`](https://github.com/AppFlowy-IO/AppFlowy/commit/ffc75106f3a1ad419adcc452d9aa9ff8966c10d5) chore: separate to new crate - [`a9b43b6`](https://github.com/AppFlowy-IO/AppFlowy/commit/a9b43b64546daceb2ec302e510f43d495bdf02d4) chore: update commit id - [`6c004ff`](https://github.com/AppFlowy-IO/AppFlowy/commit/6c004ffa064495bb6673b293d82003cc82b8caec) Merge branch 'main' into fix_chat_bug - [`7a60dfe`](https://github.com/AppFlowy-IO/AppFlowy/commit/7a60dfe96c2e8f6483922b0abd27f77a1921b291) chore: fix compile - [`3af3979`](https://github.com/AppFlowy-IO/AppFlowy/commit/3af3979d84393ea577be1e77a72f89f14d73ba93) chore: bump version ### 📊 Changes **40 files changed** (+317 additions, -2385 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/ai_chat/application/chat_bloc.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/settings_ai_view.dart` (+1 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+39 -23) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+16 -0) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+39 -23) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+17 -0) 📝 `frontend/rust-lib/Cargo.lock` (+46 -20) 📝 `frontend/rust-lib/Cargo.toml` (+7 -2) 📝 `frontend/rust-lib/flowy-chat/Cargo.toml` (+3 -2) 📝 `frontend/rust-lib/flowy-chat/src/chat.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-chat/src/chat_manager.rs` (+5 -5) 📝 `frontend/rust-lib/flowy-chat/src/entities.rs` (+17 -1) 📝 `frontend/rust-lib/flowy-chat/src/lib.rs` (+1 -2) ➖ `frontend/rust-lib/flowy-chat/src/local_ai/chat_plugin.rs` (+0 -129) ➖ `frontend/rust-lib/flowy-chat/src/local_ai/embedding_plugin.rs` (+0 -50) ➖ `frontend/rust-lib/flowy-chat/src/local_ai/llm_chat.rs` (+0 -315) ➖ `frontend/rust-lib/flowy-chat/src/local_ai/mod.rs` (+0 -4) 📝 `frontend/rust-lib/flowy-chat/src/middleware/chat_service_mw.rs` (+77 -16) ➕ `frontend/rust-lib/flowy-chat/src/middleware/mod.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-chat/src/notification.rs` (+2 -0) _...and 20 more files_ </details> ### 📄 Description Move plugin code to plugin repo:https://github.com/AppFlowy-IO/AppFlowy-LocalAI --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:17:26 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6954
No description provided.