File size: 5,337 Bytes
62b2fed 84b077e 6957609 84b077e 6957609 62b2fed 84b077e 62b2fed 84b077e 62b2fed 84b077e 62b2fed 84b077e 62b2fed 6957609 62b2fed 6957609 62b2fed 6957609 84b077e 62b2fed 6957609 84b077e 62b2fed 6957609 62b2fed 84b077e 62b2fed 84b077e 6957609 62b2fed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
import { RangeNumberWidget } from "./range_number_widget.js";
export class NewAgentModalWidget {
constructor({ widget_id = null } = {}) {
this.widget_id = widget_id;
this.name_widget_id = `${this.widget_id}-name`;
this.model_widget_id = `${this.widget_id}-model`;
this.description_widget_id = `${this.widget_id}-description`;
this.temperature_widget_id = `${this.widget_id}-temperature`;
this.max_output_tokens_widget_id = `${this.widget_id}-max-output-tokens`;
this.system_prompt_widget_id = `${this.widget_id}-system-prompt`;
this.save_button_id = `${this.widget_id}-save-button`;
this.close_button_id = `${this.widget_id}-close-button`;
}
spawn() {
this.create_widget();
this.append_to_body();
}
remove() {
this.widget.remove();
}
create_temperature_widget() {
this.temperature_widget = new RangeNumberWidget({
widget_id: this.temperature_widget_id,
label_text: "Temperature",
default_val: 0,
min_val: 0,
max_val: 1,
step_val: 0.1,
});
let temperature_widget_parent = this.widget.find(
`#${this.temperature_widget_id}`
);
this.temperature_widget.spawn_in_parent(temperature_widget_parent);
}
create_max_output_tokens_widget() {
this.max_output_tokens_widget = new RangeNumberWidget({
widget_id: this.max_output_tokens_widget_id,
label_text: "Max Output Tokens",
default_val: -1,
min_val: -1,
max_val: 32768,
step_val: 1,
});
let max_output_tokens_widget_parent = this.widget.find(
`#${this.max_output_tokens_widget_id}`
);
this.max_output_tokens_widget.spawn_in_parent(
max_output_tokens_widget_parent
);
}
create_widget() {
this.widget_html = `
<div id="${this.widget_id}" data-bs-backdrop="static" class="modal" role="dialog">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Create New Agent</h4>
<button class="btn" data-bs-dismiss="modal">
<i class="fa fa-close"></i>
</button>
</div>
<div class="modal-body">
<!-- name -->
<div class="form-floating mb-2">
<input id="${this.name_widget_id}" class="form-control" type="text"/>
<label class="form-label">Name</label>
</div>
<!-- description -->
<div class="form-floating mb-2">
<textarea id="${this.description_widget_id}" class="form-control" rows="1"></textarea>
<label>Description</label>
</div>
<!-- model -->
<div class="form-floating mb-2">
<select id="${this.model_widget_id}" class="form-select" type="text"></select>
<label class="form-label">Model</label>
</div>
<!-- temperature -->
<div id="${this.temperature_widget_id}" class="row mb-0"">
</div>
<!-- max output tokens -->
<div id="${this.max_output_tokens_widget_id}" class="row mb-2">
</div>
<!-- system prompt -->
<div class="form-floating mb-2">
<textarea id="${this.system_prompt_widget_id}" class="form-control" rows="3"></textarea>
<label>System Prompt</label>
</div>
<!-- max token -->
<!-- max history messages token -->
</div>
<div class="modal-footer justify-content-end">
<button id="${this.save_button_id}" class="btn btn-success">Save</button>
<button id="${this.close_button_id}" class="btn btn-secondary"
data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
`;
this.widget = $(this.widget_html);
this.create_temperature_widget();
this.create_max_output_tokens_widget();
}
append_to_body() {
$("body").append(this.widget);
document
.getElementById(`${this.system_prompt_widget_id}`)
.addEventListener(
"input",
function () {
this.style.height = 0;
this.style.height = this.scrollHeight + 3 + "px";
},
false
);
$(`#${this.system_prompt_widget_id}`)
.css("resize", "none")
.css("max-height", "200px");
$(`#${this.description_widget_id}`).css("resize", "none");
}
}
|