Files

262 lines
7.4 KiB
Plaintext
Raw Permalink Normal View History

2024-06-27 17:27:40 +10:00
import Component from "@glimmer/component";
import { tracked } from "@glimmer/tracking";
2024-06-28 00:59:51 +02:00
import { fn } from "@ember/helper";
import { on } from "@ember/modifier";
2024-06-27 17:27:40 +10:00
import { action } from "@ember/object";
import didInsert from "@ember/render-modifiers/modifiers/did-insert";
import didUpdate from "@ember/render-modifiers/modifiers/did-update";
2024-06-28 00:59:51 +02:00
import { service } from "@ember/service";
import AceEditor from "discourse/components/ace-editor";
2024-06-27 17:27:40 +10:00
import BackButton from "discourse/components/back-button";
import DButton from "discourse/components/d-button";
import DTooltip from "discourse/components/d-tooltip";
2024-06-28 00:59:51 +02:00
import withEventValue from "discourse/helpers/with-event-value";
2024-06-27 17:27:40 +10:00
import { popupAjaxError } from "discourse/lib/ajax-error";
import I18n from "discourse-i18n";
import ComboBox from "select-kit/components/combo-box";
import AiToolParameterEditor from "./ai-tool-parameter-editor";
import AiToolTestModal from "./modal/ai-tool-test-modal";
2024-09-30 16:27:50 +09:00
import RagOptions from "./rag-options";
import RagUploader from "./rag-uploader";
2024-06-27 17:27:40 +10:00
2024-06-28 00:59:51 +02:00
const ACE_EDITOR_MODE = "javascript";
const ACE_EDITOR_THEME = "chrome";
2024-06-27 17:27:40 +10:00
export default class AiToolEditor extends Component {
@service router;
@service dialog;
@service modal;
@service toasts;
2024-08-29 16:05:38 +10:00
@service store;
2024-09-30 16:27:50 +09:00
@service siteSettings;
2024-06-27 17:27:40 +10:00
@tracked isSaving = false;
@tracked editingModel = null;
@tracked showDelete = false;
@tracked selectedPreset = null;
get presets() {
return this.args.presets.map((preset) => {
return {
name: preset.preset_name,
id: preset.preset_id,
};
});
}
get showPresets() {
return !this.selectedPreset && this.args.model.isNew;
}
2024-06-28 00:59:51 +02:00
@action
updateModel() {
this.editingModel = this.args.model.workingCopy();
this.showDelete = !this.args.model.isNew;
}
2024-06-27 17:27:40 +10:00
@action
configurePreset() {
this.selectedPreset = this.args.presets.findBy("preset_id", this.presetId);
2024-08-29 16:05:38 +10:00
this.editingModel = this.store
.createRecord("ai-tool", this.selectedPreset)
.workingCopy();
2024-06-27 17:27:40 +10:00
this.showDelete = false;
}
2024-09-30 16:27:50 +09:00
@action
updateUploads(uploads) {
this.editingModel.rag_uploads = uploads;
}
@action
removeUpload(upload) {
this.editingModel.rag_uploads.removeObject(upload);
if (!this.args.model.isNew) {
this.save();
}
}
2024-06-27 17:27:40 +10:00
@action
async save() {
this.isSaving = true;
try {
2024-06-28 00:59:51 +02:00
const data = this.editingModel.getProperties(
"name",
"description",
"parameters",
"script",
2024-09-30 16:27:50 +09:00
"summary",
"rag_uploads",
"rag_chunk_tokens",
"rag_chunk_overlap_tokens"
2024-06-27 17:27:40 +10:00
);
2024-06-28 00:59:51 +02:00
await this.args.model.save(data);
2024-06-27 17:27:40 +10:00
this.toasts.success({
data: { message: I18n.t("discourse_ai.tools.saved") },
duration: 2000,
});
if (!this.args.tools.any((tool) => tool.id === this.args.model.id)) {
this.args.tools.pushObject(this.args.model);
}
this.router.transitionTo(
"adminPlugins.show.discourse-ai-tools.show",
this.args.model
);
} catch (e) {
popupAjaxError(e);
} finally {
this.isSaving = false;
}
}
@action
delete() {
return this.dialog.confirm({
message: I18n.t("discourse_ai.tools.confirm_delete"),
2024-06-28 00:59:51 +02:00
didConfirm: async () => {
await this.args.model.destroyRecord();
this.args.tools.removeObject(this.args.model);
this.router.transitionTo("adminPlugins.show.discourse-ai-tools.index");
2024-06-27 17:27:40 +10:00
},
});
}
@action
openTestModal() {
this.modal.show(AiToolTestModal, {
model: {
tool: this.editingModel,
},
});
}
<template>
<BackButton
@route="adminPlugins.show.discourse-ai-tools"
@label="discourse_ai.tools.back"
2024-06-27 17:27:40 +10:00
/>
<form
{{didInsert this.updateModel @model.id}}
2024-06-28 00:59:51 +02:00
{{didUpdate this.updateModel @model.id}}
class="form-horizontal ai-tool-editor"
2024-06-27 17:27:40 +10:00
>
{{#if this.showPresets}}
<div class="control-group">
<label>{{I18n.t "discourse_ai.tools.presets"}}</label>
<ComboBox
@value={{this.presetId}}
@content={{this.presets}}
class="ai-tool-editor__presets"
/>
</div>
<div class="control-group ai-llm-editor__action_panel">
<DButton
@action={{this.configurePreset}}
2024-06-28 00:59:51 +02:00
@label="discourse_ai.tools.next.title"
class="ai-tool-editor__next"
/>
2024-06-27 17:27:40 +10:00
</div>
{{else}}
<div class="control-group">
<label>{{I18n.t "discourse_ai.tools.name"}}</label>
2024-06-28 00:59:51 +02:00
<input
{{on "input" (withEventValue (fn (mut this.editingModel.name)))}}
value={{this.editingModel.name}}
type="text"
2024-06-27 17:27:40 +10:00
class="ai-tool-editor__name"
/>
<DTooltip
@icon="question-circle"
@content={{I18n.t "discourse_ai.tools.name_help"}}
/>
</div>
2024-06-28 00:59:51 +02:00
2024-06-27 17:27:40 +10:00
<div class="control-group">
<label>{{I18n.t "discourse_ai.tools.description"}}</label>
2024-06-28 00:59:51 +02:00
<textarea
{{on
"input"
(withEventValue (fn (mut this.editingModel.description)))
}}
2024-06-27 17:27:40 +10:00
placeholder={{I18n.t "discourse_ai.tools.description_help"}}
2024-06-28 00:59:51 +02:00
class="ai-tool-editor__description input-xxlarge"
>{{this.editingModel.description}}</textarea>
2024-06-27 17:27:40 +10:00
</div>
2024-06-28 00:59:51 +02:00
2024-06-27 17:27:40 +10:00
<div class="control-group">
<label>{{I18n.t "discourse_ai.tools.summary"}}</label>
2024-06-28 00:59:51 +02:00
<input
{{on "input" (withEventValue (fn (mut this.editingModel.summary)))}}
value={{this.editingModel.summary}}
type="text"
2024-06-27 17:27:40 +10:00
class="ai-tool-editor__summary input-xxlarge"
/>
<DTooltip
@icon="question-circle"
@content={{I18n.t "discourse_ai.tools.summary_help"}}
/>
</div>
2024-06-28 00:59:51 +02:00
2024-06-27 17:27:40 +10:00
<div class="control-group">
<label>{{I18n.t "discourse_ai.tools.parameters"}}</label>
<AiToolParameterEditor @parameters={{this.editingModel.parameters}} />
</div>
2024-06-28 00:59:51 +02:00
2024-06-27 17:27:40 +10:00
<div class="control-group">
<label>{{I18n.t "discourse_ai.tools.script"}}</label>
<AceEditor
@content={{this.editingModel.script}}
2024-08-27 13:52:55 +02:00
@onChange={{fn (mut this.editingModel.script)}}
2024-06-28 00:59:51 +02:00
@mode={{ACE_EDITOR_MODE}}
@theme={{ACE_EDITOR_THEME}}
2024-06-27 17:27:40 +10:00
@editorId="ai-tool-script-editor"
/>
</div>
2024-06-28 00:59:51 +02:00
2024-09-30 16:27:50 +09:00
{{#if this.siteSettings.ai_embeddings_enabled}}
<div class="control-group">
<RagUploader
@target={{this.editingModel}}
@updateUploads={{this.updateUploads}}
@onRemove={{this.removeUpload}}
/>
</div>
<RagOptions @model={{this.editingModel}} />
{{/if}}
2024-06-27 17:27:40 +10:00
<div class="control-group ai-tool-editor__action_panel">
{{#unless @model.isNew}}
<DButton
@action={{this.openTestModal}}
@label="discourse_ai.tools.test"
class="ai-tool-editor__test-button"
/>
{{/unless}}
2024-06-28 00:59:51 +02:00
2024-06-27 17:27:40 +10:00
<DButton
@action={{this.save}}
2024-06-28 00:59:51 +02:00
@label="discourse_ai.tools.save"
2024-06-27 17:27:40 +10:00
@disabled={{this.isSaving}}
2024-06-28 00:59:51 +02:00
class="btn-primary ai-tool-editor__save"
/>
2024-06-27 17:27:40 +10:00
{{#if this.showDelete}}
<DButton
@action={{this.delete}}
2024-06-28 00:59:51 +02:00
@label="discourse_ai.tools.delete"
2024-06-27 17:27:40 +10:00
class="btn-danger ai-tool-editor__delete"
2024-06-28 00:59:51 +02:00
/>
2024-06-27 17:27:40 +10:00
{{/if}}
</div>
{{/if}}
</form>
</template>
}