Add fastgpt as seperate assistant mode

This commit is contained in:
Xin Wang
2026-03-11 08:37:34 +08:00
parent 13684d498b
commit f3612a710d
26 changed files with 2333 additions and 210 deletions

View File

@@ -14,7 +14,13 @@ from runtime.ports.control_plane import (
KnowledgeRetriever,
ToolCatalog,
)
from runtime.ports.llm import LLMCancellable, LLMPort, LLMRuntimeConfigurable, LLMServiceSpec
from runtime.ports.llm import (
LLMCancellable,
LLMClientToolResumable,
LLMPort,
LLMRuntimeConfigurable,
LLMServiceSpec,
)
from runtime.ports.service_factory import RealtimeServiceFactory
from runtime.ports.tts import TTSPort, TTSServiceSpec
@@ -30,6 +36,7 @@ __all__ = [
"KnowledgeRetriever",
"ToolCatalog",
"LLMCancellable",
"LLMClientToolResumable",
"LLMPort",
"LLMRuntimeConfigurable",
"LLMServiceSpec",