File size: 6,007 Bytes
dd32c33
 
 
 
 
 
0213430
dd32c33
 
 
 
 
 
 
 
 
 
 
 
 
0213430
 
 
eae509c
 
 
 
 
 
 
 
 
 
 
 
 
 
dd32c33
 
 
 
eae509c
 
 
dd32c33
 
 
 
 
 
 
eae509c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd32c33
 
 
 
 
eae509c
dd32c33
 
 
 
 
 
eae509c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd32c33
 
 
eae509c
dd32c33
eae509c
 
 
 
 
dd32c33
 
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import { RangeNumberWidget } from "./range_number_widget.js";
import { AvailableModelsSelectWidget } from "./available_models_select_widget.js";

export class AgentInfoWidget {
    constructor({ agent } = {}) {
        this.agent = agent;
        this.widget_id = `agent-info`;
        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.top_p_widget_id = `${this.widget_id}-top-p`;
        this.max_output_tokens_widget_id = `${this.widget_id}-max-output-tokens`;
        this.system_prompt_widget_id = `${this.widget_id}-system-prompt`;
    }
    spawn() {
        this.create_widget();
        this.append_to_agent_sidebar();
    }
    append_to_agent_sidebar() {
        let agent_info_container = $("#agent-info-container");
        agent_info_container.empty();
        agent_info_container.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");
    }
    remove() {
        this.widget.remove();
    }
    create_name_widget() {
        this.widget.find(`#${this.name_widget_id}`).val(this.agent.name);
    }
    create_model_widget() {
        this.model_widget = new AvailableModelsSelectWidget({
            widget_id: this.model_widget_id,
        });
        let model_widget_parent = this.widget.find(`#${this.model_widget_id}`);
        this.model_widget.spawn_in_parent(model_widget_parent, "prepend");
    }
    create_system_prompt_widget() {
        this.widget
            .find(`#${this.system_prompt_widget_id}`)
            .val(this.agent.system_prompt);
    }
    create_description_widget() {
        this.widget
            .find(`#${this.description_widget_id}`)
            .val(this.agent.description);
    }
    create_temperature_widget() {
        this.temperature_widget = new RangeNumberWidget({
            widget_id: this.temperature_widget_id,
            label_text: "Temperature",
            default_val: this.agent.temperature || 0.5,
            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_top_p_widget() {
        this.top_p_widget = new RangeNumberWidget({
            widget_id: this.top_p_widget_id,
            label_text: "Top P",
            default_val: this.agent.top_p || 0.9,
            min_val: 0.0,
            max_val: 1.0,
            step_val: 0.01,
        });
        let top_p_widget_parent = this.widget.find(`#${this.top_p_widget_id}`);
        this.top_p_widget.spawn_in_parent(top_p_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 <code>(-1: auto)</code>",
            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}">
            <!-- 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>
            <!-- model -->
            <div id="${this.model_widget_id}" class="form-floating mb-2">
                <label class="form-label">Model</label>
            </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>
            <a class="btn mx-0 px-0" data-bs-toggle="collapse" href="#agent-info-advanced-settings">
                <b>Advanced Settings</b> <i class="fa fa-chevron-down"></i>
            </a>
            <div class="collapse show" id="agent-info-advanced-settings">
                <!-- description -->
                <div class="form-floating my-2">
                    <textarea id="${this.description_widget_id}" class="form-control" rows="1"></textarea>
                    <label>Description</label>
                </div>
                <!-- temperature -->
                <div id="${this.temperature_widget_id}" class="row mb-0"">
                </div>
                <!-- top_p -->
                <div id="${this.top_p_widget_id}" class="row mb-0"">
                </div>
                <!-- max output tokens -->
                <div id="${this.max_output_tokens_widget_id}" class="row mb-2">
                </div>
                <!-- max history messages token -->
            </div>
        </div>
        `;
        this.widget = $(this.widget_html);
        this.create_name_widget();
        this.create_model_widget();
        this.create_system_prompt_widget();
        this.create_description_widget();
        this.create_temperature_widget();
        this.create_top_p_widget();
        this.create_max_output_tokens_widget();
    }
}