-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat_moa.tscn
More file actions
592 lines (466 loc) · 24.3 KB
/
chat_moa.tscn
File metadata and controls
592 lines (466 loc) · 24.3 KB
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
[gd_scene load_steps=7 format=3 uid="uid://b0x3kl765djv1"]
[ext_resource type="Script" path="res://chat_moa.gd" id="1_mjsig"]
[ext_resource type="FontFile" uid="uid://qgq1y000pv10" path="res://files/NotoSansJP-Regular.ttf" id="2_gh1vs"]
[ext_resource type="Material" uid="uid://haiuo58tqyva" path="res://files/new_shader_material.tres" id="2_lwvqm"]
[ext_resource type="Texture2D" uid="uid://vyvje5jg08sn" path="res://images/128_0001.jpg" id="2_m35gw"]
[ext_resource type="Texture2D" uid="uid://b2afdki8n155w" path="res://images/128_0014.jpg" id="4_blvpg"]
[sub_resource type="LabelSettings" id="LabelSettings_6qyb2"]
font_color = Color(1, 0, 0, 1)
[node name="Control" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_mjsig")
[node name="MarginContainer" type="MarginContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/margin_left = 8
theme_override_constants/margin_top = 8
theme_override_constants/margin_right = 8
theme_override_constants/margin_bottom = 8
[node name="TabContainer" type="TabContainer" parent="MarginContainer"]
layout_mode = 2
current_tab = 0
[node name="Mixture-of-Agents" type="VBoxContainer" parent="MarginContainer/TabContainer"]
layout_mode = 2
metadata/_tab_index = 0
[node name="HBoxContainer7" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer7"]
layout_mode = 2
text = "User"
[node name="WebLabel" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer7"]
layout_mode = 2
size_flags_horizontal = 3
text = "Non English Paste is broken on Web Version Chrome,but other can't paste anyting"
horizontal_alignment = 2
[node name="OldAgentContainer" type="VBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
visible = false
layout_mode = 2
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents/OldAgentContainer"]
layout_mode = 2
[node name="LineEdit" type="LineEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/OldAgentContainer/HBoxContainer"]
custom_minimum_size = Vector2(100, 0)
layout_mode = 2
text = "1.0"
[node name="SystemLineEdit1" type="LineEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/OldAgentContainer/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
text = "You are a seasoned data scientist"
[node name="HBoxContainer2" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents/OldAgentContainer"]
layout_mode = 2
[node name="LineEdit" type="LineEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/OldAgentContainer/HBoxContainer2"]
custom_minimum_size = Vector2(100, 0)
layout_mode = 2
text = "1.5 Flash"
[node name="SystemLineEdit2" type="LineEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/OldAgentContainer/HBoxContainer2"]
layout_mode = 2
size_flags_horizontal = 3
text = "you are gifted game creator"
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
size_flags_vertical = 3
[node name="InputEdit" type="TextEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
theme_override_fonts/font = ExtResource("2_gh1vs")
text = "What is the best way to generate ideas? Please tell us your rolled character way of thinking and methods, rather than the general method."
wrap_mode = 1
[node name="HBoxContainer5" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
alignment = 1
[node name="Label" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer5"]
layout_mode = 2
text = "Cycle"
[node name="CycleOptionButton" type="OptionButton" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer5"]
layout_mode = 2
selected = 1
item_count = 5
popup/item_0/text = "1"
popup/item_0/id = 1
popup/item_1/text = "2"
popup/item_1/id = 2
popup/item_2/text = "3"
popup/item_2/id = 3
popup/item_3/text = "4"
popup/item_3/id = 4
popup/item_4/text = "5"
popup/item_4/id = 5
[node name="SendButton" type="Button" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer5"]
custom_minimum_size = Vector2(400, 0)
layout_mode = 2
text = "Ask"
[node name="HBoxContainer6" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
[node name="MessagesOptionButton" type="OptionButton" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer6"]
layout_mode = 2
[node name="HBoxContainer4" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
size_flags_vertical = 3
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer4"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Label" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer4/VBoxContainer"]
visible = false
layout_mode = 2
text = "1.0"
[node name="TextEditA" type="TextEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer4/VBoxContainer"]
layout_mode = 2
size_flags_vertical = 3
theme_override_fonts/font = ExtResource("2_gh1vs")
[node name="VBoxContainer2" type="VBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer4"]
layout_mode = 2
size_flags_horizontal = 3
[node name="Label" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer4/VBoxContainer2"]
visible = false
layout_mode = 2
text = "Flash"
[node name="TextEditB" type="TextEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer4/VBoxContainer2"]
layout_mode = 2
size_flags_vertical = 3
theme_override_fonts/font = ExtResource("2_gh1vs")
[node name="HBoxContainer3" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
[node name="Label2" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
layout_mode = 2
text = "Final"
[node name="FinishedLabel" type="Label" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
visible = false
layout_mode = 2
label_settings = SubResource("LabelSettings_6qyb2")
[node name="MainModelOptionButton" type="OptionButton" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
layout_mode = 2
[node name="ReFinalButton" type="Button" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
layout_mode = 2
disabled = true
text = "Re Final thought"
[node name="SummarizeButton" type="Button" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
layout_mode = 2
disabled = true
text = "summarize "
[node name="PickoneButton" type="Button" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
layout_mode = 2
disabled = true
text = "Pick Best"
[node name="TranslateButton" type="Button" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3"]
layout_mode = 2
disabled = true
text = "TransJP"
[node name="HBoxContainer2" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
size_flags_vertical = 3
[node name="ResponseEdit" type="TextEdit" parent="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer2"]
layout_mode = 2
size_flags_horizontal = 3
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
[node name="WebCopyContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/Mixture-of-Agents"]
layout_mode = 2
size_flags_horizontal = 3
alignment = 1
[node name="WebResultDownloadButton" type="Button" parent="MarginContainer/TabContainer/Mixture-of-Agents/WebCopyContainer"]
visible = false
layout_mode = 2
text = "Download Text(Because Web Copy is broken on itch.io)"
[node name="AgentSettings" type="VBoxContainer" parent="MarginContainer/TabContainer"]
visible = false
layout_mode = 2
metadata/_tab_index = 1
[node name="HBoxContainer2" type="HBoxContainer" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer2"]
layout_mode = 2
text = "Agents"
[node name="Label2" type="Label" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer2"]
layout_mode = 2
text = "Max"
[node name="MaxAgentOptionButton" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer2"]
layout_mode = 2
selected = 0
item_count = 1
popup/item_0/text = "0"
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer2"]
layout_mode = 2
size_flags_horizontal = 3
alignment = 2
[node name="SetHelpfulAssistantButton" type="Button" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer2/HBoxContainer"]
layout_mode = 2
text = "Set Helpfull assistant All"
[node name="ReloadButton" type="Button" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer2/HBoxContainer"]
layout_mode = 2
text = "ReLoad"
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
[node name="HBoxContainer3" type="HBoxContainer" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
[node name="AgentContainer1" type="VBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3"]
layout_mode = 2
[node name="OptionButton1" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer1"]
layout_mode = 2
[node name="TextureRect1" type="TextureRect" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer1"]
material = ExtResource("2_lwvqm")
custom_minimum_size = Vector2(128, 128)
layout_mode = 2
texture = ExtResource("2_m35gw")
[node name="TextEdit1" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer1"]
custom_minimum_size = Vector2(0, 128)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
autowrap_mode = 1
[node name="AgentContainer2" type="VBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3"]
layout_mode = 2
[node name="OptionButton2" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer2"]
layout_mode = 2
[node name="TextureRect2" type="TextureRect" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer2"]
material = ExtResource("2_lwvqm")
custom_minimum_size = Vector2(128, 128)
layout_mode = 2
texture = ExtResource("2_m35gw")
[node name="TextEdit2" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer2"]
custom_minimum_size = Vector2(0, 128)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
autowrap_mode = 1
[node name="AgentContainer3" type="VBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3"]
layout_mode = 2
[node name="OptionButton3" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer3"]
layout_mode = 2
[node name="TextureRect3" type="TextureRect" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer3"]
material = ExtResource("2_lwvqm")
custom_minimum_size = Vector2(128, 128)
layout_mode = 2
texture = ExtResource("4_blvpg")
[node name="TextEdit3" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer3"]
custom_minimum_size = Vector2(0, 128)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
autowrap_mode = 1
[node name="AgentContainer4" type="VBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3"]
layout_mode = 2
[node name="OptionButton4" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer4"]
layout_mode = 2
[node name="TextureRect4" type="TextureRect" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer4"]
material = ExtResource("2_lwvqm")
custom_minimum_size = Vector2(128, 128)
layout_mode = 2
texture = ExtResource("2_m35gw")
[node name="TextEdit4" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer4"]
custom_minimum_size = Vector2(0, 128)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
autowrap_mode = 1
[node name="AgentContainer5" type="VBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3"]
layout_mode = 2
[node name="OptionButton5" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer5"]
layout_mode = 2
[node name="TextureRect5" type="TextureRect" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer5"]
material = ExtResource("2_lwvqm")
custom_minimum_size = Vector2(128, 128)
layout_mode = 2
texture = ExtResource("2_m35gw")
[node name="TextEdit5" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer5"]
custom_minimum_size = Vector2(0, 128)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
autowrap_mode = 1
[node name="AgentContainer6" type="VBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3"]
layout_mode = 2
[node name="OptionButton6" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer6"]
layout_mode = 2
[node name="TextureRect6" type="TextureRect" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer6"]
material = ExtResource("2_lwvqm")
custom_minimum_size = Vector2(128, 128)
layout_mode = 2
texture = ExtResource("2_m35gw")
[node name="TextEdit6" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer3/AgentContainer6"]
custom_minimum_size = Vector2(0, 128)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
wrap_mode = 1
autowrap_mode = 1
[node name="LineEdit1" type="LineEdit" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
size_flags_horizontal = 3
[node name="LineEdit2" type="LineEdit" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
text = "You are gifted game creator."
[node name="LineEdit3" type="LineEdit" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
text = "You are a graphic designer creating a visual identity for a brand"
[node name="LineEdit4" type="LineEdit" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
text = "You are a musician composing a piece of music in a specific genre."
[node name="LineEdit5" type="LineEdit" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
text = "You are a marketing consultant advising a client on their social media strategy."
[node name="LineEdit6" type="LineEdit" parent="MarginContainer/TabContainer/AgentSettings"]
visible = false
layout_mode = 2
text = "You are a historian researching of the Rome Empire"
[node name="Label5" type="Label" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
text = "Pronpt(must contain {response})"
[node name="ProposersPromptTextEdit" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
size_flags_vertical = 3
theme_override_fonts/font = ExtResource("2_gh1vs")
[node name="Label2" type="Label" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
text = "Final"
horizontal_alignment = 1
[node name="Label4" type="Label" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
text = "Role"
[node name="FinalAssistantTextEdit" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings"]
custom_minimum_size = Vector2(0, 100)
layout_mode = 2
theme_override_fonts/font = ExtResource("2_gh1vs")
text = "you are a helpful assistant"
[node name="HBoxContainer4" type="HBoxContainer" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
[node name="Label3" type="Label" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer4"]
layout_mode = 2
text = "Prompt (must contain {response})"
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer4"]
layout_mode = 2
size_flags_horizontal = 3
alignment = 2
[node name="MainPromptOptionButton" type="OptionButton" parent="MarginContainer/TabContainer/AgentSettings/HBoxContainer4/HBoxContainer"]
layout_mode = 2
[node name="FinalPromptTextEdit" type="TextEdit" parent="MarginContainer/TabContainer/AgentSettings"]
layout_mode = 2
size_flags_vertical = 3
theme_override_fonts/font = ExtResource("2_gh1vs")
[node name="APIKeys" type="VBoxContainer" parent="MarginContainer/TabContainer"]
visible = false
layout_mode = 2
metadata/_tab_index = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys"]
layout_mode = 2
text = "API Keys"
horizontal_alignment = 1
[node name="Label5" type="Label" parent="MarginContainer/TabContainer/APIKeys"]
layout_mode = 2
text = "Groq API Key "
[node name="WebErrorLabel" type="Label" parent="MarginContainer/TabContainer/APIKeys"]
layout_mode = 2
text = "If key error happen Reload Page and paste again."
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys"]
layout_mode = 2
[node name="APIKeyLineEdit" type="LineEdit" parent="MarginContainer/TabContainer/APIKeys/HBoxContainer"]
layout_mode = 2
size_flags_horizontal = 3
secret = true
[node name="APIKeyButton" type="Button" parent="MarginContainer/TabContainer/APIKeys/HBoxContainer"]
layout_mode = 2
text = "Store key to .env.json"
[node name="AppContainer" type="VBoxContainer" parent="MarginContainer/TabContainer/APIKeys"]
layout_mode = 2
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys/AppContainer"]
layout_mode = 2
[node name="Label2" type="Label" parent="MarginContainer/TabContainer/APIKeys/AppContainer/HBoxContainer"]
layout_mode = 2
text = "Step1:"
[node name="OpenUrlButton" type="Button" parent="MarginContainer/TabContainer/APIKeys/AppContainer/HBoxContainer"]
layout_mode = 2
text = "https://console.groq.com/keys"
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys/AppContainer/HBoxContainer"]
layout_mode = 2
text = "- click button or input url"
[node name="Label5" type="Label" parent="MarginContainer/TabContainer/APIKeys/AppContainer"]
layout_mode = 2
text = "Step2:Create API Key and copy and paste above box"
[node name="Label4" type="Label" parent="MarginContainer/TabContainer/APIKeys/AppContainer"]
layout_mode = 2
text = "Don't git add or share .env.json ( there no env control api on godot I use json)"
[node name="Label6" type="Label" parent="MarginContainer/TabContainer/APIKeys/AppContainer"]
layout_mode = 2
text = "you can delete api key anytime from above url."
[node name="WebContainer" type="VBoxContainer" parent="MarginContainer/TabContainer/APIKeys"]
layout_mode = 2
[node name="Label2" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
layout_mode = 2
text = "Only Tested Chrome browser.Sadly Clipboard broken on itch.io"
horizontal_alignment = 1
[node name="HBoxContainer2" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer2"]
layout_mode = 2
text = "Step 1: go groq api page and copy api key."
[node name="OpenUrlButton" type="Button" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer2"]
layout_mode = 2
text = "https://console.groq.com/keys"
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
layout_mode = 2
[node name="Label2" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer"]
layout_mode = 2
text = "Step 2: click button to download file."
[node name="WebDownloadButton" type="Button" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer"]
layout_mode = 2
text = "Download Json"
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer"]
layout_mode = 2
text = "write api key and drop file somewhere."
[node name="WebDownloadTextEdit" type="TextEdit" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
custom_minimum_size = Vector2(0, 100)
layout_mode = 2
text = "{
\"groq_api_key\":\"\"
}"
editable = false
[node name="HBoxContainer3" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer3"]
layout_mode = 2
text = "Step 3: open downloaded json with editor and paste api key inside double quote."
[node name="WebDownloadTextEdit2" type="TextEdit" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
custom_minimum_size = Vector2(0, 100)
layout_mode = 2
text = "{
\"groq_api_key\":\"example-aaaaa-bbbb-cccc-dddd\"
}"
editable = false
[node name="HBoxContainer4" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer4"]
layout_mode = 2
text = "Step 4: save a file to diks.After that drag and drop the file to this window"
[node name="HBoxContainer5" type="HBoxContainer" parent="MarginContainer/TabContainer/APIKeys/WebContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer5"]
layout_mode = 2
text = "Step 5: check top api key filled ** and change Mixture-of-Agents Tab"
[connection signal="pressed" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer5/SendButton" to="." method="_on_send_button_pressed"]
[connection signal="item_selected" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer6/MessagesOptionButton" to="." method="_on_messages_option_button_item_selected"]
[connection signal="item_selected" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3/MainModelOptionButton" to="." method="_on_main_model_option_button_item_selected"]
[connection signal="pressed" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3/ReFinalButton" to="." method="_on_re_final_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3/SummarizeButton" to="." method="_on_summarize_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3/PickoneButton" to="." method="_on_pickone_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/Mixture-of-Agents/HBoxContainer3/TranslateButton" to="." method="_on_translate_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/Mixture-of-Agents/WebCopyContainer/WebResultDownloadButton" to="." method="_on_web_result_download_button_pressed"]
[connection signal="item_selected" from="MarginContainer/TabContainer/AgentSettings/HBoxContainer2/MaxAgentOptionButton" to="." method="_on_max_agent_option_button_item_selected"]
[connection signal="pressed" from="MarginContainer/TabContainer/AgentSettings/HBoxContainer2/HBoxContainer/SetHelpfulAssistantButton" to="." method="_on_set_helpful_assistant_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/AgentSettings/HBoxContainer2/HBoxContainer/ReloadButton" to="." method="_on_reload_button_pressed"]
[connection signal="item_selected" from="MarginContainer/TabContainer/AgentSettings/HBoxContainer4/HBoxContainer/MainPromptOptionButton" to="." method="_on_main_prompt_option_button_item_selected"]
[connection signal="pressed" from="MarginContainer/TabContainer/APIKeys/HBoxContainer/APIKeyButton" to="." method="_on_api_key_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/APIKeys/AppContainer/HBoxContainer/OpenUrlButton" to="." method="_on_open_url_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer2/OpenUrlButton" to="." method="_on_open_url_button_pressed"]
[connection signal="pressed" from="MarginContainer/TabContainer/APIKeys/WebContainer/HBoxContainer/WebDownloadButton" to="." method="_on_web_download_button_pressed"]