fix: add kommunikation dependency to ai_assistant and ai_proactive for correct load order
This commit is contained in:
@@ -22,7 +22,7 @@ class AIAssistantPlugin(BasePlugin):
|
|||||||
"AI Assistant with multi-provider LLM support, custom agents, "
|
"AI Assistant with multi-provider LLM support, custom agents, "
|
||||||
"plugin tools, and streaming chat."
|
"plugin tools, and streaming chat."
|
||||||
),
|
),
|
||||||
dependencies=[],
|
dependencies=["kommunikation"],
|
||||||
routes=[
|
routes=[
|
||||||
PluginRouteDef(
|
PluginRouteDef(
|
||||||
path="/api/v1/ai",
|
path="/api/v1/ai",
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class AIProactivePlugin(BasePlugin):
|
|||||||
"Überwacht den User-Kontext, generiert proaktiv Vorschläge per LLM "
|
"Überwacht den User-Kontext, generiert proaktiv Vorschläge per LLM "
|
||||||
"und pusht diese via SSE. Nutzt unified_search und ai_assistant."
|
"und pusht diese via SSE. Nutzt unified_search und ai_assistant."
|
||||||
),
|
),
|
||||||
dependencies=["ai_assistant", "unified_search"],
|
dependencies=["ai_assistant", "unified_search", "kommunikation"],
|
||||||
routes=[
|
routes=[
|
||||||
PluginRouteDef(
|
PluginRouteDef(
|
||||||
path="/api/v1/ai-proactive",
|
path="/api/v1/ai-proactive",
|
||||||
|
|||||||
Reference in New Issue
Block a user