get_feishu_prompt
Retrieve specialized prompt suggestions for backend, frontend, and general tasks by specifying a prompt name. Enhances LLM content generation with tailored context.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt_name | Yes | 提示词名称,如'UI转化提示词'、'AI生成UI-3D风格'等 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt_name": {
"description": "提示词名称,如'UI转化提示词'、'AI生成UI-3D风格'等",
"type": "string"
}
},
"required": [
"prompt_name"
],
"type": "object"
}