🧨

春联生成器

暂无描述

⬡ 5 节点 ↓ 17 下载 ⚙ workflow ⭐ 90/100 2026-05-28

工作流图谱

YAML 源码

app:
  description: ''
  icon: firecracker
  icon_background: '#FFE4E8'
  mode: workflow
  name: 春联生成器
  use_icon_as_answer_icon: false
kind: app
version: 0.1.5
workflow:
  conversation_variables: []
  environment_variables: []
  features:
    file_upload:
      allowed_file_extensions:
      - .JPG
      - .JPEG
      - .PNG
      - .GIF
      - .WEBP
      - .SVG
      allowed_file_types:
      - image
      allowed_file_upload_methods:
      - local_file
      - remote_url
      enabled: false
      fileUploadConfig:
        audio_file_size_limit: 50
        batch_count_limit: 5
        file_size_limit: 15
        image_file_size_limit: 10
        video_file_size_limit: 100
        workflow_file_upload_limit: 10
      image:
        enabled: false
        number_limits: 3
        transfer_methods:
        - local_file
        - remote_url
      number_limits: 3
    opening_statement: ''
    retriever_resource:
      enabled: true
    sensitive_word_avoidance:
      enabled: false
    speech_to_text:
      enabled: false
    suggested_questions: []
    suggested_questions_after_answer:
      enabled: false
    text_to_speech:
      enabled: false
      language: ''
      voice: ''
  graph:
    edges:
    - data:
        isInIteration: false
        sourceType: llm
        targetType: code
      id: 1737014291474-source-1737014565681-target
      source: '1737014291474'
      sourceHandle: source
      target: '1737014565681'
      targetHandle: target
      type: custom
      zIndex: 0
    - data:
        isInIteration: false
        sourceType: code
        targetType: template-transform
      id: 1737014565681-source-1737015751556-target
      source: '1737014565681'
      sourceHandle: source
      target: '1737015751556'
      targetHandle: target
      type: custom
      zIndex: 0
    - data:
        isInIteration: false
        sourceType: template-transform
        targetType: end
      id: 1737015751556-source-1737014987145-target
      source: '1737015751556'
      sourceHandle: source
      target: '1737014987145'
      targetHandle: target
      type: custom
      zIndex: 0
    - data:
        isInIteration: false
        sourceType: start
        targetType: llm
      id: 1737014287710-source-1737014291474-target
      source: '1737014287710'
      sourceHandle: source
      target: '1737014291474'
      targetHandle: target
      type: custom
      zIndex: 0
    nodes:
    - data:
        desc: ''
        selected: false
        title: 开始
        type: start
        variables:
        - label: 主题
          max_length: 256
          options: []
          required: true
          type: text-input
          variable: theme
        - label: 上下联字数
          max_length: 48
          options:
          - 五言
          - 七言
          - 九言
          - 十一言
          required: true
          type: select
          variable: count
      height: 115
      id: '1737014287710'
      position:
        x: 30
        y: 258
      positionAbsolute:
        x: 30
        y: 258
      selected: false
      sourcePosition: right
      targetPosition: left
      type: custom
      width: 244
    - data:
        context:
          enabled: false
          variable_selector: []
        desc: ''
        model:
          completion_params:
            temperature: 0.7
          mode: chat
          name: qwen-max
          provider: tongyi
        prompt_template:
        - id: c3d6f892-cf1f-4930-82b5-3a0d1d388363
          role: system
          text: "你是一个编写春联的专家,下面我将会给你一些要求,你帮我编写一幅春联,需要有美好寓意,要求如下:\n\n主题:{{#1737014287710.theme#}}\n\
            上下联字数:{{#1737014287710.count#}}\n\n以JSON格式返回,返回示例如下:\n{\n \"top\": (上联;\
            \ type: string),\n \"bottom\": (下联; type: string),\n \"banner\": (横批;\
            \ type: string)\n}\n\nAnswer:"
        selected: false
        title: LLM
        type: llm
        variables: []
        vision:
          enabled: false
      height: 97
      id: '1737014291474'
      position:
        x: 334
        y: 258
      positionAbsolute:
        x: 334
        y: 258
      selected: false
      sourcePosition: right
      targetPosition: left
      type: custom
      width: 244
    - data:
        code: "import json\n\ndef main(text: str) -> dict:\n    json_obj = extract_json_response(text)\n\
          \    return {\n        \"banner\": json_obj['banner'],\n        \"reversed_banner\"\
          : json_obj['banner'][::-1],\n        \"top\": json_obj['top'],\n       \
          \ \"bottom\": json_obj['bottom'],\n    }\n\ndef extract_json_response(text:\
          \ str) -> dict:\n\n    def extract_json(text):\n        stack = []\n   \
          \     for i, c in enumerate(text):\n            if c == \"{\":\n       \
          \         stack.append(c)\n            elif c == \"}\":\n              \
          \  if not stack:\n                    return text[:i]\n                if\
          \ c == \"}\" and stack[-1] == \"{\":\n                    stack.pop()\n\
          \                    if not stack:\n                        return text[:\
          \ i + 1]\n                else:\n                    return text[:i]\n \
          \       return None\n\n    for idx in range(len(text)):\n        if text[idx]\
          \ == \"{\":\n            json_str = extract_json(text[idx:])\n         \
          \   if json_str:\n                return json.loads(json_str)\n"
        code_language: python3
        desc: ''
        outputs:
          banner:
            children: null
            type: string
          bottom:
            children: null
            type: string
          reversed_banner:
            children: null
            type: string
          top:
            children: null
            type: string
        selected: false
        title: 代码执行
        type: code
        variables:
        - value_selector:
          - '1737014291474'
          - text
          variable: text
      height: 53
      id: '1737014565681'
      position:
        x: 638
        y: 258
      positionAbsolute:
        x: 638
        y: 258
      selected: false
      sourcePosition: right
      targetPosition: left
      type: custom
      width: 244
    - data:
        desc: ''
        outputs:
        - value_selector:
          - '1737015751556'
          - output
          variable: output
        selected: false
        title: 结束
        type: end
      height: 89
      id: '1737014987145'
      position:
        x: 1246
        y: 258
      positionAbsolute:
        x: 1246
        y: 258
      selected: false
      sourcePosition: right
      targetPosition: left
      type: custom
      width: 244
    - data:
        desc: ''
        selected: true
        template: "<div style=\"width: 600px 100%; margin: 0px auto; padding: 0px;\
          \ font-family: '隶书'; font-size: 2rem; border-radius: 12px; text-align: center;\"\
          >\r\n    <div style=\"background-color: red; text-align: center; background-size:\
          \ 95px; background-repeat: repeat-x; margin: 0px auto; padding: 0px; display:\
          \ inline-block; height: 45px;\">\r\n        <span style=\"margin-left: 15px;\
          \ margin-right: 15px;\">{{ reversed_banner }}</span>\r\n    </div>\r\n \
          \   <div style=\"min-width: 200px; max-width: 500px; width: 35%; margin:\
          \ 0px auto; padding: 0px;\">\r\n        <div style=\"background-color: red;\
          \ background-size: 95px; text-align: center; float: left; width: 45px;\"\
          >\r\n            {{ bottom }}\r\n        </div>\r\n        <div style=\"\
          background-color: red; background-size: 95px; text-align: center; float:\
          \ right; width: 45px;\">\r\n            {{ top }}\r\n        </div>\r\n\
          \    </div>\r\n</div>"
        title: 模板转换
        type: template-transform
        variables:
        - value_selector:
          - '1737014565681'
          - top
          variable: top
        - value_selector:
          - '1737014565681'
          - bottom
          variable: bottom
        - value_selector:
          - '1737014565681'
          - banner
          variable: banner
        - value_selector:
          - '1737014565681'
          - reversed_banner
          variable: reversed_banner
      height: 53
      id: '1737015751556'
      position:
        x: 942
        y: 258
      positionAbsolute:
        x: 942
        y: 258
      selected: true
      sourcePosition: right
      targetPosition: left
      type: custom
      width: 244
    viewport:
      x: -240
      y: -10
      zoom: 0.7