feat: 生成图片提示词agent结构封装

This commit is contained in:
yangshilin
2026-03-19 10:43:34 +08:00
parent 4a1d6f0dcc
commit c21cda3e78
7 changed files with 131 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
"""图片提示词模块ImagePromptOrchestrator + PromptGenerationAgent"""
from app.agents.image_prompt.orchestrator import ImagePromptOrchestrator
from app.agents.image_prompt.prompt_agent import PromptGenerationAgent
__all__ = [
"ImagePromptOrchestrator",
"PromptGenerationAgent",
]