mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
17 lines
389 B
Plaintext
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;
|