miyabi__generate_article
Generate medical AI academic articles with thumbnail instructions and LLM countermeasures by providing article details, author perspective, and specific angles for targeted content creation.
Instructions
医療AI関連の学術記事を生成します(LLMO対策、サムネイル指示付き)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
angle | Yes | 論文の切り口 | |
articleAuthor | No | 著者名 | |
articleSource | No | 出典 | |
articleTitle | Yes | 参照元の論文/記事のタイトル | |
articleUrl | Yes | 参照元のURL | |
deepDivePoints | No | 特に深掘りしたい論点 | |
keyConcepts | No | キーコンセプト(箇条書き) | |
perspective | Yes | 執筆者のペルソナ・専門分野 |
Input Schema (JSON Schema)
{
"properties": {
"angle": {
"description": "論文の切り口",
"type": "string"
},
"articleAuthor": {
"description": "著者名",
"type": "string"
},
"articleSource": {
"description": "出典",
"type": "string"
},
"articleTitle": {
"description": "参照元の論文/記事のタイトル",
"type": "string"
},
"articleUrl": {
"description": "参照元のURL",
"type": "string"
},
"deepDivePoints": {
"description": "特に深掘りしたい論点",
"type": "string"
},
"keyConcepts": {
"description": "キーコンセプト(箇条書き)",
"type": "string"
},
"perspective": {
"description": "執筆者のペルソナ・専門分野",
"type": "string"
}
},
"required": [
"articleTitle",
"articleUrl",
"perspective",
"angle"
],
"type": "object"
}