2024-05-16 14:28:57 -03:00
|
|
|
import BackButton from "discourse/components/back-button";
|
2024-06-21 17:32:15 +10:00
|
|
|
import AiLlmEditorForm from "./ai-llm-editor-form";
|
2024-05-13 12:46:42 -03:00
|
|
|
|
2025-02-04 11:51:01 +01:00
|
|
|
const AiLlmEditor = <template>
|
|
|
|
|
<BackButton
|
|
|
|
|
@route="adminPlugins.show.discourse-ai-llms"
|
|
|
|
|
@label="discourse_ai.llms.back"
|
|
|
|
|
/>
|
|
|
|
|
<AiLlmEditorForm
|
|
|
|
|
@model={{@model}}
|
|
|
|
|
@llmTemplate={{@llmTemplate}}
|
|
|
|
|
@llms={{@llms}}
|
|
|
|
|
/>
|
|
|
|
|
</template>;
|
2024-05-27 16:44:08 -03:00
|
|
|
|
2025-02-04 11:51:01 +01:00
|
|
|
export default AiLlmEditor;
|