完善skills;测试用例生成页面功能初步实现

This commit is contained in:
2026-05-05 19:45:33 +08:00
parent 0c2ed67e2a
commit 69b49d28b2
35 changed files with 4396 additions and 658 deletions

View File

@@ -2,7 +2,7 @@ from .user import User
from .knowledge import KnowledgeBase, Document, DocumentChunk
from .chat import Chat, Message
from .api_key import APIKey
from .tooling import ToolJob, SRSExtraction, SRSRequirement
from .tooling import ToolJob, SRSExtraction, SRSRequirement, TestingGeneration
__all__ = [
"User",
@@ -15,4 +15,5 @@ __all__ = [
"ToolJob",
"SRSExtraction",
"SRSRequirement",
"TestingGeneration",
]