-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.tscn
59 lines (52 loc) · 1.7 KB
/
main.tscn
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
[gd_scene load_steps=2 format=3 uid="uid://8di6md8tu606"]
[ext_resource type="Script" path="res://main.gd" id="1_31dcs"]
[node name="Main" type="Node"]
script = ExtResource("1_31dcs")
[node name="TextGenerationButton" type="Button" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -517.0
offset_top = -201.0
offset_right = -213.0
offset_bottom = -116.0
grow_horizontal = 2
grow_vertical = 2
size_flags_horizontal = 4
size_flags_vertical = 4
theme_override_font_sizes/font_size = 32
text = "Text Generation"
[node name="SimilarityButton" type="Button" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -519.0
offset_top = -22.0
offset_right = -215.0
offset_bottom = 63.0
grow_horizontal = 2
grow_vertical = 2
theme_override_font_sizes/font_size = 32
text = "Similarity"
[node name="ImageToTextButton" type="Button" parent="."]
offset_left = 1013.0
offset_top = 258.0
offset_right = 1317.0
offset_bottom = 343.0
theme_override_font_sizes/font_size = 32
text = "Image to Text"
[node name="VectorDatabaseButton" type="Button" parent="."]
offset_left = 1019.0
offset_top = 430.0
offset_right = 1323.0
offset_bottom = 515.0
theme_override_font_sizes/font_size = 32
text = "Vector Database"
[connection signal="pressed" from="TextGenerationButton" to="." method="_on_text_generation_pressed"]
[connection signal="pressed" from="SimilarityButton" to="." method="_on_similarity_button_pressed"]
[connection signal="pressed" from="ImageToTextButton" to="." method="_on_image_to_text_button_pressed"]
[connection signal="pressed" from="VectorDatabaseButton" to="." method="_on_vector_database_button_pressed"]