创建时间: 2026-06-16 09:23 | 步骤: 5 个
将复杂的理工科概念降维翻译,通过逻辑递进的四幅科普插图(现象引入、原理解剖、核心机制、应用场景)进行生动拆解,图中强制使用中文文字,最终输出通俗化的图文科普内容与质检报告。
{
"workflow_id": "science_concept_4_diagram_popularizer",
"input": {
"target_audience": {
"field_name": "target_audience",
"default": "大众非专业读者",
"description": "目标受众特征(如:初中生、大众非专业读者等),决定降维深度",
"example": "大众非专业读者",
"required": true,
"type": "string"
},
"concept_name": {
"field_name": "concept_name",
"default": "",
"description": "需要科普的理工科概念名称(如:量子纠缠、傅里叶变换、相对论等)",
"example": "量子纠缠",
"required": true,
"type": "string"
},
"style_preference": {
"field_name": "style_preference",
"default": "扁平化信息图表风格,亲和力强",
"description": "科普插图画风偏好",
"example": "扁平化信息图表风格,亲和力强",
"required": false,
"type": "string"
},
"aspect_ratio": {
"field_name": "aspect_ratio",
"default": "1:1",
"description": "生成图片的宽高比例,可选值:1:1, 3:4, 4:3, 16:9, 9:16",
"example": "1:1",
"required": false,
"type": "string"
},
"core_focus": {
"field_name": "core_focus",
"default": "均衡科普",
"description": "概念科普的核心侧重点(如:侧重原理揭秘、侧重应用场景等),不填默认为均衡科普",
"example": "侧重原理揭秘与生活隐喻",
"required": false,
"type": "string"
}
},
"steps": [
{
"id": "step_1_concept_outline",
"point_code": "",
"result": [],
"api_code": "science_concept_outline",
"backend_type": "prompt_api",
"status": "PENDING",
"name": "概念降维与四图大纲规划",
"action": "run",
"params": {
"target_audience": "{{@input.target_audience}}",
"concept_name": "{{@input.concept_name}}",
"core_focus": "{{@input.core_focus}}"
}
},
{
"id": "step_2_illustration_prompt",
"point_code": "",
"result": [],
"api_code": "science_illustration_prompt",
"backend_type": "prompt_api",
"status": "PENDING",
"name": "科普四图专用视觉提示词生成",
"action": "run",
"params": {
"target_audience": "{{@input.target_audience}}",
"structured_outline": "{{@step_1_concept_outline.result.data.structured_outline}}",
"concept_name": "{{@input.concept_name}}",
"style_preference": "{{@input.style_preference}}"
},
"depends_on": [
"step_1_concept_outline"
]
},
{
"result": [],
"iterator": "{{@step_2_illustration_prompt.result.data.prompts_for_4_diagrams}}",
"status": "PENDING",
"aggregates": [
{
"field": "data.result_url",
"into": "image_urls"
}
],
"params": {
"prompt": "{{@diagram_prompt.visual_prompt}}",
"aspect_ratio": "{{@input.aspect_ratio}}"
},
"depends_on": [
"step_2_illustration_prompt"
],
"id": "step_3_generate_images",
"point_code": "1",
"backend_type": "sys_api",
"api_code": "3373",
"item_name": "diagram_prompt",
"name": "并行生成四幅科普插图",
"action": "foreach"
},
{
"result": [],
"iterator": "{{@step_3_generate_images.result.data.aggregated.image_urls}}",
"status": "PENDING",
"aggregates": [
{
"field": "data.result_url",
"into": "final_image_urls"
}
],
"params": {
"result_url": "{{@image_url}}"
},
"depends_on": [
"step_3_generate_images"
],
"polling": {
"interval_seconds": 5,
"timeout_seconds": 600,
"success_condition": "{{@step_4_poll_images.result.data.task_status}} === 'SUCCEEDED'"
},
"point_code": "",
"id": "step_4_poll_images",
"api_code": "polling",
"backend_type": "sys_api",
"item_name": "image_url",
"name": "轮询四幅科普插图生成状态",
"action": "foreach"
},
{
"id": "step_5_merge_and_review",
"point_code": "",
"result": [],
"api_code": "content_merge_and_review",
"backend_type": "prompt_api",
"status": "PENDING",
"name": "图文逻辑融合与通俗性质检",
"action": "run",
"params": {
"structured_outline": "{{@step_1_concept_outline.result.data.structured_outline}}",
"concept_name": "{{@input.concept_name}}",
"image_urls": "{{@step_4_poll_images.result.data.aggregated.final_image_urls}}"
},
"depends_on": [
"step_4_poll_images"
]
}
],
"output": {
"quality_review_report": {
"field_name": "quality_review_report",
"description": "通俗性质检报告,包含通俗性评分、逻辑连贯性评分、中文清晰度评分及详细审查意见",
"value": "{{@step_5_merge_and_review.result.data.quality_review_report}}",
"type": "object"
},
"final_popular_science_content": {
"field_name": "final_popular_science_content",
"description": "最终融合的科普图文结构,包含整体标题、逻辑摘要及4幅图的视觉焦点与通俗化文案注解",
"value": "{{@step_5_merge_and_review.result.data.final_popular_science_content}}",
"type": "object"
}
}
} 提交后立即返回 task_id,系统每 2 秒自动轮询一次运行状态并可视化执行步骤,适合耗时较长的 Skill。
target_audience必填string目标受众特征(如:初中生、大众非专业读者等),决定降维深度
concept_name必填string需要科普的理工科概念名称(如:量子纠缠、傅里叶变换、相对论等)
style_preferencestring科普插图画风偏好
aspect_ratiostring生成图片的宽高比例,可选值:1:1, 3:4, 4:3, 16:9, 9:16
core_focusstring概念科普的核心侧重点(如:侧重原理揭秘、侧重应用场景等),不填默认为均衡科普
把这个 Skill 接入你的应用或 AI Agent —— 自带 REST API、OpenAPI 规范与 Agent 技能包。
下载技能包导入 AI Agent 客户端,即可作为技能使用
appKey={AppKey},与 API 文档一致。Agent 技能包接入教程 帮助文档
不知道如何接入?跟随图文步骤一步步完成配置
不同 Agent 客户端对技能包名称格式有不同要求,请选择你使用的客户端下载对应版本。
WorkBuddy
腾讯 Agent 客户端
DuMate
EN百度智能体 · 英文名称
阿里悟空
EN阿里 Agent · 英文名称
QoderWork CN
EN编程智能体 · 英文名称
QwenPaw
通义千问 Agent
Trae Work
字节跳动 Agent
有道 LobsterAI
网易有道智能体
智谱 AutoClaw
智谱 AI Agent
CodeX
ENCodex AI Agent
标注 EN 的客户端要求 Skill 英文命名,其余使用中文命名版本。

7*24小时服务
保证您的售后无忧

1v1专属服务
保证服务质量

担保交易
全程担保交易保证资金安全

服务全程监管
全周期保证商品服务质量
© 2015-2023 WWW.SHOWAPI.COM ALL RIGHTS RESERVED.昆明秀派科技有限公司
本网站所列接口及文档全部由SHOWAPI网站提供,并对其拥有最终解释权 POWERED BY SHOWAPI