Files

17 lines
389 B
Plaintext
Raw Permalink Normal View History

import BackButton from "discourse/components/back-button";
import AiLlmEditorForm from "./ai-llm-editor-form";
2024-05-13 12:46:42 -03: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
export default AiLlmEditor;