[PR #3259] [CLOSED] Integrated flowy-ai plugin. #5651

Closed
opened 2026-03-23 22:19:41 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3259
Author: @yatendra2001
Created: 8/23/2023
Status: Closed

Base: mainHead: main


📝 Commits (10+)

  • fc4b21f fix: row banner overlay
  • 7f7ab6e tests: added integration test for title
  • 9f6dfac fix: removed unused imports
  • 2c10e43 Merge branch 'AppFlowy-IO:main' into main
  • bd8b929 feat: created ai wrapper lib + api call to openai
  • 3733ce3 feat: added flowy-ai to cargo.toml
  • 804a0de test: added api test + chores: changed file structure
  • 4e4d3b3 Merge branch 'AppFlowy-IO:main' into main
  • 11c5c8f feat: added prompt selection + test: call API
  • 0502248 refactor: api wrapper + made code modular, test: api+prompt test

📊 Changes

23 files changed (+771 additions, -705 deletions)

View changed files

frontend/appflowy_flutter/lib/workspace/application/open_ai/open_ai_service.dart (+18 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart (+19 -4)
📝 frontend/appflowy_flutter/packages/appflowy_backend/example/macos/Runner.xcodeproj/project.pbxproj (+3 -3)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart (+2 -1)
📝 frontend/appflowy_flutter/packages/appflowy_popover/example/macos/Runner.xcodeproj/project.pbxproj (+3 -3)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/android/.project (+2 -2)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/android/.settings/org.eclipse.buildship.core.prefs (+11 -0)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/example/android/.project (+2 -2)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/example/android/.settings/org.eclipse.buildship.core.prefs (+3 -3)
📝 frontend/appflowy_flutter/packages/flowy_infra_ui/example/macos/Runner.xcodeproj/project.pbxproj (+3 -3)
📝 frontend/rust-lib/Cargo.lock (+525 -683)
📝 frontend/rust-lib/Cargo.toml (+1 -0)
frontend/rust-lib/flowy-ai/Cargo.toml (+30 -0)
frontend/rust-lib/flowy-ai/Flowy.toml (+3 -0)
frontend/rust-lib/flowy-ai/build.rs (+10 -0)
frontend/rust-lib/flowy-ai/src/entities.rs (+71 -0)
frontend/rust-lib/flowy-ai/src/event_handler.rs (+15 -0)
frontend/rust-lib/flowy-ai/src/event_map.rs (+18 -0)
frontend/rust-lib/flowy-ai/src/lib.rs (+7 -0)
frontend/rust-lib/flowy-ai/src/notification.rs (+20 -0)

...and 3 more files

📄 Description

Feature Preview

#2782


PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/3259 **Author:** [@yatendra2001](https://github.com/yatendra2001) **Created:** 8/23/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`fc4b21f`](https://github.com/AppFlowy-IO/AppFlowy/commit/fc4b21f553df802e080e66bce76c365dc49a83b2) fix: row banner overlay - [`7f7ab6e`](https://github.com/AppFlowy-IO/AppFlowy/commit/7f7ab6e9f7cd37b7b8bc8b52687edcbbf42daef0) tests: added integration test for title - [`9f6dfac`](https://github.com/AppFlowy-IO/AppFlowy/commit/9f6dfac6f1f813bc277dcf7c69db8dbd5df0988e) fix: removed unused imports - [`2c10e43`](https://github.com/AppFlowy-IO/AppFlowy/commit/2c10e4315bde554d17c2af2f9109ea4a8c8fe87e) Merge branch 'AppFlowy-IO:main' into main - [`bd8b929`](https://github.com/AppFlowy-IO/AppFlowy/commit/bd8b929865d81dd01c34ca8368d52dffe936525b) feat: created ai wrapper lib + api call to openai - [`3733ce3`](https://github.com/AppFlowy-IO/AppFlowy/commit/3733ce3a7667408a7c3531c4ba054271f9043c48) feat: added flowy-ai to cargo.toml - [`804a0de`](https://github.com/AppFlowy-IO/AppFlowy/commit/804a0de78793458b576da2551f9f8c2ef5971c27) test: added api test + chores: changed file structure - [`4e4d3b3`](https://github.com/AppFlowy-IO/AppFlowy/commit/4e4d3b3718f7a1aa737d92d2290e4e52cc69ca77) Merge branch 'AppFlowy-IO:main' into main - [`11c5c8f`](https://github.com/AppFlowy-IO/AppFlowy/commit/11c5c8fb8f7b79d492c8a1f5ab82c56f58915f58) feat: added prompt selection + test: call API - [`0502248`](https://github.com/AppFlowy-IO/AppFlowy/commit/05022480da0f30bc8b90399e94100a1b5b47e67c) refactor: api wrapper + made code modular, test: api+prompt test ### 📊 Changes **23 files changed** (+771 additions, -705 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/lib/workspace/application/open_ai/open_ai_service.dart` (+18 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar_user.dart` (+19 -4) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/example/macos/Runner.xcodeproj/project.pbxproj` (+3 -3) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart` (+2 -1) 📝 `frontend/appflowy_flutter/packages/appflowy_popover/example/macos/Runner.xcodeproj/project.pbxproj` (+3 -3) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/android/.project` (+2 -2) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/android/.settings/org.eclipse.buildship.core.prefs` (+11 -0) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/example/android/.project` (+2 -2) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/example/android/.settings/org.eclipse.buildship.core.prefs` (+3 -3) 📝 `frontend/appflowy_flutter/packages/flowy_infra_ui/example/macos/Runner.xcodeproj/project.pbxproj` (+3 -3) 📝 `frontend/rust-lib/Cargo.lock` (+525 -683) 📝 `frontend/rust-lib/Cargo.toml` (+1 -0) ➕ `frontend/rust-lib/flowy-ai/Cargo.toml` (+30 -0) ➕ `frontend/rust-lib/flowy-ai/Flowy.toml` (+3 -0) ➕ `frontend/rust-lib/flowy-ai/build.rs` (+10 -0) ➕ `frontend/rust-lib/flowy-ai/src/entities.rs` (+71 -0) ➕ `frontend/rust-lib/flowy-ai/src/event_handler.rs` (+15 -0) ➕ `frontend/rust-lib/flowy-ai/src/event_map.rs` (+18 -0) ➕ `frontend/rust-lib/flowy-ai/src/lib.rs` (+7 -0) ➕ `frontend/rust-lib/flowy-ai/src/notification.rs` (+20 -0) _...and 3 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> #2782 --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:19:41 +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#5651
No description provided.