UX: Add description to configuration nav (#1153)
This will be used in the new admin search UI
This commit is contained in:
parent
9aafca03f5
commit
aa13d16022
|
@ -14,26 +14,32 @@ export default {
|
||||||
{
|
{
|
||||||
label: "discourse_ai.usage.short_title",
|
label: "discourse_ai.usage.short_title",
|
||||||
route: "adminPlugins.show.discourse-ai-usage",
|
route: "adminPlugins.show.discourse-ai-usage",
|
||||||
|
description: "discourse_ai.usage.subheader_description",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "discourse_ai.llms.short_title",
|
label: "discourse_ai.llms.short_title",
|
||||||
route: "adminPlugins.show.discourse-ai-llms",
|
route: "adminPlugins.show.discourse-ai-llms",
|
||||||
|
description: "discourse_ai.llms.preconfigured.description",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "discourse_ai.ai_persona.short_title",
|
label: "discourse_ai.ai_persona.short_title",
|
||||||
route: "adminPlugins.show.discourse-ai-personas",
|
route: "adminPlugins.show.discourse-ai-personas",
|
||||||
|
description: "discourse_ai.ai_persona.persona_description",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "discourse_ai.embeddings.short_title",
|
label: "discourse_ai.embeddings.short_title",
|
||||||
route: "adminPlugins.show.discourse-ai-embeddings",
|
route: "adminPlugins.show.discourse-ai-embeddings",
|
||||||
|
description: "discourse_ai.embeddings.description",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "discourse_ai.tools.short_title",
|
label: "discourse_ai.tools.short_title",
|
||||||
route: "adminPlugins.show.discourse-ai-tools",
|
route: "adminPlugins.show.discourse-ai-tools",
|
||||||
|
description: "discourse_ai.tools.subheader_description",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "discourse_ai.spam.short_title",
|
label: "discourse_ai.spam.short_title",
|
||||||
route: "adminPlugins.show.discourse-ai-spam",
|
route: "adminPlugins.show.discourse-ai-spam",
|
||||||
|
description: "discourse_ai.spam.spam_description",
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
|
@ -198,7 +198,7 @@ en:
|
||||||
no_users: "No user usage data found"
|
no_users: "No user usage data found"
|
||||||
no_models: "No model usage data found"
|
no_models: "No model usage data found"
|
||||||
no_features: "No feature usage data found"
|
no_features: "No feature usage data found"
|
||||||
subheader_description: "Tokens are the basic units that LLMs use to understand and generate text, usage data may affect costs."
|
subheader_description: "Tokens are the basic units that LLMs use to understand and generate text, usage data may affect costs"
|
||||||
stat_tooltips:
|
stat_tooltips:
|
||||||
total_requests: "All requests made to LLMs through Discourse"
|
total_requests: "All requests made to LLMs through Discourse"
|
||||||
total_tokens: "All the tokens used when prompting an LLM"
|
total_tokens: "All the tokens used when prompting an LLM"
|
||||||
|
@ -415,7 +415,7 @@ en:
|
||||||
preconfigured:
|
preconfigured:
|
||||||
title_no_llms: "Select a template to get started"
|
title_no_llms: "Select a template to get started"
|
||||||
title: "Unconfigured LLM templates"
|
title: "Unconfigured LLM templates"
|
||||||
description: "LLMs (Large Language Models) are AI tools optimized for tasks like summarizing content, generating reports, automating customer interactions, and facilitating forum moderation and insights."
|
description: "LLMs (Large Language Models) are AI tools optimized for tasks like summarizing content, generating reports, automating customer interactions, and facilitating forum moderation and insights"
|
||||||
fake: "Manual configuration"
|
fake: "Manual configuration"
|
||||||
button: "Set up"
|
button: "Set up"
|
||||||
next:
|
next:
|
||||||
|
|
Loading…
Reference in New Issue