Joffrey JAFFEUX 40e996b174
DEV: converts llm admin page to use form kit (#1099)
This also converts the quota editor, and the quota modal.
2025-02-04 11:51:01 +01:00

17 lines
389 B
Plaintext

import BackButton from "discourse/components/back-button";
import AiLlmEditorForm from "./ai-llm-editor-form";
const AiLlmEditor = <template>
<BackButton
@route="adminPlugins.show.discourse-ai-llms"
@label="discourse_ai.llms.back"
/>
<AiLlmEditorForm
@model={{@model}}
@llmTemplate={{@llmTemplate}}
@llms={{@llms}}
/>
</template>;
export default AiLlmEditor;