{
  "version": 1,
  "structures": [
    {
      "name": "social_content_response",
      "description": "为各渠道生成的再利用内容",
      "example": {
        "article_summary": "本文讲解如何用 AI 工作流自动化客户支持。",
        "linkedin_post": "我们写了一篇关于自动化支持的文章，这里分享 3 个要点。",
        "x_post": "用 AI 工作流自动化客服回复。请看下面的帖子。",
        "email_teaser": "一份自动化客服收件箱的实战指南。",
        "suggested_hashtags": [
          "#自动化",
          "#客户支持"
        ]
      },
      "schema": {
        "type": "object",
        "properties": {
          "article_summary": {
            "type": "string"
          },
          "linkedin_post": {
            "type": "string"
          },
          "x_post": {
            "type": "string"
          },
          "email_teaser": {
            "type": "string"
          },
          "suggested_hashtags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "article_summary",
          "linkedin_post",
          "x_post",
          "email_teaser",
          "suggested_hashtags"
        ],
        "additionalProperties": false
      }
    }
  ],
  "workflows": [
    {
      "name": "content_repurposer_workflow",
      "description": "把文章改写为各渠道的营销内容",
      "provider": "deepseek",
      "model": "deepseek-v4-flash",
      "backups": [
        {
          "provider": "anthropic",
          "model": "claude-haiku-4-5-20251001"
        }
      ],
      "request_type": "chat",
      "system_instructions": "把文章改写为营销内容：两三句话的摘要、领英帖子、简短的 X 帖子和邮件预告，并建议几个相关话题标签。语气与原文保持一致。",
      "structure": "social_content_response",
      "customer_fields": [
        "article_title",
        "article_text"
      ],
      "test_mode": false,
      "cache_window_seconds": 900,
      "backend_pipeline": {
        "enabled": true,
        "events": [
          {
            "name": "article_submitted"
          },
          {
            "name": "snippets_ready"
          }
        ]
      }
    }
  ]
}
