The AIGC tag can be configured to be added for specified prompts instead of for all prompts.
For example, one can use the following settings:
{
"apiKey": "<your-api-key>",
"model": "gpt-3.5-turbo",
"addtag": ["Summarize", "Generate Ideas", "Explain This"], // for built in prompts
"customPrompts": {
"enable": true,
"prompts": [
{
"name": "Markdown Table",
"prompt": "Please generate a {{text}} Markdown table",
"output": "replace",
"addtag": false // for custom prompts
}
]
},
"disabled": false
}