GLM-5.3-Flash / workflow.json
akhaliq's picture
akhaliq HF Staff
Update workflow.json from canvas
d70fecd verified
Raw
History Blame Contribute Delete
1.83 kB
{
"schema_version": "2",
"name": "GLM-5.3-Flash Chat",
"references": [
{
"id": "ref_prompt",
"label": "Prompt",
"role": "reference",
"asset_type": "text",
"inputs": [
{
"id": "in",
"label": "Text",
"type": "text"
}
],
"outputs": [
{
"id": "out",
"label": "Text",
"type": "text"
}
],
"data": {
"out": ""
},
"width": 310
}
],
"operators": [
{
"id": "op_glm",
"label": "GLM-5.3-Flash Chat",
"role": "operator",
"kind": "fn",
"fn": "glm_chat",
"inputs": [
{
"id": "prompt",
"label": "Prompt",
"type": "text",
"required": true
}
],
"outputs": [
{
"id": "out_0",
"label": "Reply",
"type": "text",
"output_index": 0
}
],
"data": {},
"width": 200
}
],
"subjects": [
{
"id": "sub_answer",
"label": "Answer",
"role": "subject",
"asset_type": "text",
"inputs": [
{
"id": "in",
"label": "Text",
"type": "text"
}
],
"outputs": [
{
"id": "out",
"label": "Text",
"type": "text"
}
],
"data": {
"in": ""
},
"width": 507
}
],
"edges": [
{
"id": "e1",
"from_node_id": "ref_prompt",
"from_port_id": "out",
"to_node_id": "op_glm",
"to_port_id": "prompt",
"type": "text"
},
{
"id": "e2",
"from_node_id": "op_glm",
"from_port_id": "out_0",
"to_node_id": "sub_answer",
"to_port_id": "in",
"type": "text"
}
]
}