migration: preserve mentor and llm streaming slice

This commit is contained in:
leefer
2026-07-31 04:18:53 +08:00
parent 4bab921d14
commit 2919229c73
26 changed files with 1705 additions and 1222 deletions
+21
View File
@@ -0,0 +1,21 @@
from .agent import (
MentorAgentError,
MentorSkill,
MentorSkillRegistry,
chat_with_mentor,
stream_with_mentor,
)
from .http import MentorHttpMixin
from .repository import MentorRepositoryMixin
from .service import MentorServiceMixin
__all__ = [
"MentorAgentError",
"MentorHttpMixin",
"MentorRepositoryMixin",
"MentorServiceMixin",
"MentorSkill",
"MentorSkillRegistry",
"chat_with_mentor",
"stream_with_mentor",
]