mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-01 12:02:16 +00:00
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
|
export default [
|
||
|
{
|
||
|
name: "translate",
|
||
|
translated_name: "Translate to English (US)",
|
||
|
prompt_type: "text",
|
||
|
icon: "language",
|
||
|
location: ["composer", "post"],
|
||
|
},
|
||
|
{
|
||
|
name: "proofread",
|
||
|
translated_name: "Proofread text",
|
||
|
prompt_type: "diff",
|
||
|
icon: "spell-check",
|
||
|
location: ["composer", "post"],
|
||
|
},
|
||
|
{
|
||
|
name: "markdown_table",
|
||
|
translated_name: "Generate Markdown table",
|
||
|
prompt_type: "diff",
|
||
|
icon: "table",
|
||
|
location: ["composer"],
|
||
|
},
|
||
|
{
|
||
|
name: "custom_prompt",
|
||
|
translated_name: "Custom Prompt",
|
||
|
prompt_type: "diff",
|
||
|
icon: "comment",
|
||
|
location: ["composer", "post"],
|
||
|
},
|
||
|
{
|
||
|
name: "explain",
|
||
|
translated_name: "Explain",
|
||
|
prompt_type: "text",
|
||
|
icon: "question",
|
||
|
location: ["post"],
|
||
|
},
|
||
|
{
|
||
|
name: "generate_titles",
|
||
|
translated_name: "Suggest topic titles",
|
||
|
prompt_type: "list",
|
||
|
icon: "heading",
|
||
|
location: ["composer"],
|
||
|
},
|
||
|
{
|
||
|
name: "illustrate_post",
|
||
|
translated_name: "Illustrate Post",
|
||
|
prompt_type: "list",
|
||
|
icon: "images",
|
||
|
location: ["composer"],
|
||
|
},
|
||
|
];
|