discourse-ai/assets/javascripts/discourse/components/ai-persona-command-option-editor.gjs
Sam 61890b667c
FEATURE: search command now support searching in context of user (#610)
This optional feature allows search to be performed in the context
of the user that executed it.

By default we do not allow this behavior cause it means llm gets
access to potentially secure data.
2024-05-10 11:32:34 +10:00

45 lines
1.1 KiB
Plaintext

import Component from "@glimmer/component";
import { Input } from "@ember/component";
import { on } from "@ember/modifier";
import { action } from "@ember/object";
export default class AiPersonaCommandOptionEditor extends Component {
get isBoolean() {
return this.args.option.type === "boolean";
}
get selectedValue() {
return this.args.option.value.value === "true";
}
@action
onCheckboxChange(event) {
this.args.option.value.value = event.target.checked ? "true" : "false";
}
<template>
<div class="control-group ai-persona-command-option-editor">
<label>
{{@option.name}}
</label>
<div class="">
{{#if this.isBoolean}}
<input
type="checkbox"
checked={{this.selectedValue}}
{{on "click" this.onCheckboxChange}}
/>
{{@option.description}}
{{else}}
<Input @value={{@option.value.value}} />
{{/if}}
</div>
{{#unless this.isBoolean}}
<div class="ai-persona-command-option-editor__instructions">
{{@option.description}}
</div>
{{/unless}}
</div>
</template>
}