mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-05-28 01:24:29 +08:00
16 lines
389 B
Text
16 lines
389 B
Text
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;
|