feat(mcp-chat): added shared libraires and extension points#8370
Open
fjudith wants to merge 17 commits intobackstage:mainfrom
Open
feat(mcp-chat): added shared libraires and extension points#8370fjudith wants to merge 17 commits intobackstage:mainfrom
fjudith wants to merge 17 commits intobackstage:mainfrom
Conversation
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
…ckage Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
… package Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
see: comments backstage#8196 Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
2ca5d06 to
5620679
Compare
Contributor
Changed Packages
|
Signed-off-by: Florian JUDITH <florian.judith@alithya.com>
f6bd506 to
23e0387
Compare
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.
Hey, I just made a Pull Request!
Starts the Implementation of #7976 following the adr011 and superseeds #8196.
flowchart LR subgraph sg1["Common Library: plugin-mcp-chat-common"] TYPES["Shared Types (ChatMessage, Tool, etc.)"] end subgraph sg2["Node Library: plugin-mcp-chat-node"] EP["llmProviderExtensionPoint"] BASE["LLMProvider (abstract), ProviderConfig"] end subgraph sg3["Core Plugin: plugin-mcp-chat-backend"] SVC["MCPClientServiceImpl"] ROUTER["createRouter"] PLUGIN["mcpChatPlugin (createBackendPlugin)"] MOD_OAI["module-openai"] MOD_ANT["module-anthropic"] MOD_GEM["module-gemini"] MOD_OLL["module-ollama"] MOD_LIT["module-litellm"] MOD_OAR["module-openai-responses"] PF["provider-factory"] end EP -->|depends on| BASE PLUGIN -->|depends on| PF PLUGIN -->|depends on| TYPES SVC -->|uses| BASE PF -->MOD_OAI PF -->MOD_ANT PF -->MOD_GEM PF -->MOD_OLL PF -->MOD_LIT PF -->MOD_OAR PF -->BASE PLUGIN -->|reads registry from| EP PLUGIN -->|resolves active provider, injects into| SVC MOD_OAI -->|extends| BASE MOD_ANT -->|extends| BASE MOD_GEM -->|extends| BASE MOD_OLL -->|extends| BASE MOD_LIT -->|extends| BASE MOD_OAR -->|extends| BASE MOD_OAI -->|extends| TYPES MOD_ANT -->|extends| TYPES MOD_GEM -->|extends| TYPES MOD_OLL -->|extends| TYPES MOD_LIT -->|extends| TYPES MOD_OAR -->|extends| TYPES MOD_GEM -->|depends on| GOOGLE["@google/genai"] MOD_OLL -->|depends on| OLLAMA["ollama"] style sg1 fill: lightgreen style sg2 fill: lightgreen style PF fill: #FDD835✔️ Checklist
Signed-off-byline in the message. (more info)