get_general_suggestions
Generate prompt suggestions tailored to your context and task type to improve content creation for backend, frontend, or general development tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | 当前上下文或任务描述 | |
taskType | No | 任务类型,如代码生成、文档生成等 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"context": {
"description": "当前上下文或任务描述",
"type": "string"
},
"taskType": {
"description": "任务类型,如代码生成、文档生成等",
"type": "string"
}
},
"type": "object"
}