refact: Migrate from python seekdb (legacy) to seekdb-rs#2
Open
dengfuping wants to merge 3 commits intoob-labs:masterfrom
Open
refact: Migrate from python seekdb (legacy) to seekdb-rs#2dengfuping wants to merge 3 commits intoob-labs:masterfrom
dengfuping wants to merge 3 commits intoob-labs:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Solution Description
graph TB subgraph Frontend["Frontend Layer"] UI[React UI Components] State[State Management] end subgraph Command["Command Layer (Tauri)"] CMD_Project[Project Commands] CMD_Doc[Document Commands] CMD_Chat[Conversation Commands] CMD_Speech[Speech Commands] end subgraph Service["Service Layer (Rust)"] SVC_Project[ProjectService] SVC_Doc[DocumentService] SVC_Conv[ConversationService] SVC_Embed[EmbeddingService] SVC_LLM[LLMClient] SVC_Speech[SpeechService] end subgraph Data["Data Layer"] Adapter[SeekDbAdapter] Client[seekdb-rs Client] DB[(Embedded SeekDB)] Tables[Relational Tables] VectorColl[Vector Collection + HNSW] end subgraph External["External Services"] DashScope[Aliyun Bailian API<br/>Embedding + LLM] end UI --> Command State --> Command CMD_Project --> SVC_Project CMD_Doc --> SVC_Doc CMD_Chat --> SVC_Conv CMD_Speech --> SVC_Speech SVC_Doc --> SVC_Embed SVC_Conv --> SVC_LLM SVC_Project --> Adapter SVC_Doc --> Adapter SVC_Conv --> Adapter Adapter --> Client Client --> DB DB --> Tables DB --> VectorColl SVC_Embed --> DashScope SVC_LLM --> DashScopeResult