Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.
46 changes: 40 additions & 6 deletions src/agentscope_bricks/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
from agentscope_bricks.components.generations.image_edit_wan25 import (
ImageEditWan25,
)
from agentscope_bricks.components.generations.multichannel_speech_to_text import ( # noqa
MultichannelSpeechToText,
)
from agentscope_bricks.components.generations.qwen_image_edit import (
QwenImageEdit,
)
Expand Down Expand Up @@ -75,7 +72,26 @@
from agentscope_bricks.components.generations.fetch_wan import WanVideoFetch
from agentscope_bricks.components.generations.qwen_image_edit_new import (
QwenImageEditNew,
) # noqa
)
from agentscope_bricks.components.generations.image_edit_wan26 import (
ImageEditWan26,
)
from agentscope_bricks.components.generations.image_generation_zimage import (
ZImageGeneration,
)
from agentscope_bricks.components.generations.async_image_out_painting import (
ImageOutPaintingSubmit,
ImageOutPaintingFetch,
)
from agentscope_bricks.components.generations.async_image_to_video_fl_wan22 import ( # noqa
ImageToVideoByFirstAndLastFrameWan22Submit,
)
from agentscope_bricks.components.generations.image_out_painting import (
ImageOutPaintingAuto,
)
from agentscope_bricks.components.generations.image_text_interleave_generation_wan26 import ( # noqa
WanImageInterleaveGeneration,
)


class McpServerMeta(BaseModel):
Expand All @@ -92,7 +108,14 @@ class McpServerMeta(BaseModel):
mcp_server_metas: Dict[str, McpServerMeta] = {
"modelstudio_wan_image": McpServerMeta(
instructions="基于通义万相大模型的智能图像生成服务,提供高质量的图像处理和编辑功能",
components=[ImageGeneration, ImageEdit, ImageStyleRepaint],
components=[
ImageGeneration,
ImageEdit,
ImageStyleRepaint,
ImageOutPaintingSubmit,
ImageOutPaintingFetch,
ImageOutPaintingAuto,
],
),
"modelstudio_wan_video": McpServerMeta(
instructions="基于通义万相大模型提供AI视频生成服务,支持文本到视频、图像到视频和语音到视频的多模态生成功能",
Expand All @@ -103,6 +126,8 @@ class McpServerMeta(BaseModel):
ImageToVideoFetch,
SpeechToVideoSubmit,
SpeechToVideoFetch,
ImageToVideoByFirstAndLastFrameWan22Submit,
WanVideoFetch,
],
),
"modelstudio_wan25_media": McpServerMeta(
Expand Down Expand Up @@ -130,7 +155,7 @@ class McpServerMeta(BaseModel):
),
"modelstudio_speech_to_text": McpServerMeta(
instructions="录音文件的语音识别服务,支持多种音频格式的语音转文字功能",
components=[SpeechToText, MultichannelSpeechToText],
components=[SpeechToText],
),
"modelstudio_qwen_text_to_speech": McpServerMeta(
instructions="基于通义千问大模型的语音合成服务,支持多种语言语音合成功能",
Expand All @@ -143,6 +168,15 @@ class McpServerMeta(BaseModel):
TextToVideoWan26Submit,
ImageToVideoWan26Submit,
WanVideoFetch,
ImageEditWan26,
WanImageInterleaveGeneration,
],
),
"modelstudio_Z_image": McpServerMeta(
instructions="基于通义Z-Image大模型的智能图像生成服务,是一款轻量级文生图模型,"
"可快速生成图像,支持中英文字渲染,并灵活适配多种分辨率与宽高比例。",
components=[
ZImageGeneration,
],
),
}
Loading