Spaces:
Sleeping
Sleeping
eljanmahammadli
commited on
Commit
·
4cd52ce
1
Parent(s):
65efd0e
added examples
Browse files
app.py
CHANGED
@@ -66,7 +66,10 @@ with gr.Blocks() as app:
|
|
66 |
with gr.Column(scale=0.6):
|
67 |
gr.Markdown("### Chat with the Assistant")
|
68 |
history = gr.Textbox(
|
69 |
-
label="Chat History",
|
|
|
|
|
|
|
70 |
)
|
71 |
question = gr.Textbox(
|
72 |
label="Your question",
|
@@ -102,4 +105,22 @@ with gr.Blocks() as app:
|
|
102 |
outputs=[history, question],
|
103 |
)
|
104 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
app.launch()
|
|
|
66 |
with gr.Column(scale=0.6):
|
67 |
gr.Markdown("### Chat with the Assistant")
|
68 |
history = gr.Textbox(
|
69 |
+
label="Chat History",
|
70 |
+
value="",
|
71 |
+
lines=20,
|
72 |
+
interactive=False,
|
73 |
)
|
74 |
question = gr.Textbox(
|
75 |
label="Your question",
|
|
|
105 |
outputs=[history, question],
|
106 |
)
|
107 |
|
108 |
+
gr.Examples(
|
109 |
+
examples=[
|
110 |
+
["İş mühitində effektiv olmaq üçün nə etmək lazımdır?", 0.3],
|
111 |
+
["Körpənin qayğısına necə qalmaq lazımdır?", 0.45],
|
112 |
+
["Sağlam yaşamaq üçün nə etmək lazımdır?", 0.5],
|
113 |
+
["Bərpa olunan enerjidən istifadənin əhəmiyyəti", 0.5],
|
114 |
+
["Pizza hazırlamağın qaydası nədir?", 0.5],
|
115 |
+
["Çox pul qazanmaq üçün nə etmək lazımdır?", 0.2],
|
116 |
+
["İkinci dünya müharibəsi nə vaxt olmuşdur?", 0.2],
|
117 |
+
["Amerikanın paytaxtı hansı şəhərdir?", 0.3],
|
118 |
+
["Fransanın paytaxtı hansı şəhərdir?", 0.3],
|
119 |
+
],
|
120 |
+
inputs=[question, temperature, top_p, repetition_penalty, top_k, question],
|
121 |
+
outputs=[history, question],
|
122 |
+
fn=answer_question,
|
123 |
+
)
|
124 |
+
|
125 |
+
|
126 |
app.launch()
|