Spaces:
Paused
Paused
chore: update something
Browse files
app.py
CHANGED
@@ -64,21 +64,52 @@ Rely on the context, such as the time, to offer responses that feel relevant and
|
|
64 |
# """
|
65 |
|
66 |
EXAMPLES = [
|
67 |
-
[
|
68 |
-
|
69 |
-
|
70 |
-
[
|
71 |
-
|
72 |
-
|
73 |
-
[
|
74 |
-
|
75 |
-
|
76 |
-
[
|
77 |
-
|
78 |
-
|
79 |
-
[
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
]
|
83 |
|
84 |
random.shuffle(EXAMPLES)
|
@@ -833,7 +864,7 @@ chat_interface = gr.ChatInterface(
|
|
833 |
additional_inputs_accordion=gr.Accordion(label="Additional Inputs", open=True),
|
834 |
stop_btn="Stop",
|
835 |
cache_examples=False,
|
836 |
-
examples=
|
837 |
examples_per_page=8,
|
838 |
concurrency_limit=100,
|
839 |
)
|
|
|
64 |
# """
|
65 |
|
66 |
EXAMPLES = [
|
67 |
+
[
|
68 |
+
"Help me draft an email to a university professor requesting a recommendation letter for a scholarship application. Include a brief summary of my academic achievements."
|
69 |
+
],
|
70 |
+
[
|
71 |
+
"Hãy giải thích tác động của biến đổi khí hậu đến nền nông nghiệp ở Việt Nam và đề xuất các biện pháp để giảm thiểu những tác động này."
|
72 |
+
],
|
73 |
+
[
|
74 |
+
"한국의 역사적 사건 중에서 6월 민주항쟁의 원인과 결과를 설명하고, 이 사건이 현대 한국 정치에 미친 영향을 분석해 보세요."
|
75 |
+
],
|
76 |
+
[
|
77 |
+
"Redacta un ensayo corto sobre cómo la Revolución Industrial cambió la economía y la sociedad europea, destacando los impactos positivos y negativos."
|
78 |
+
],
|
79 |
+
[
|
80 |
+
"Ajude-me a estudar química: explique a diferença entre ligações covalentes e iônicas e dê um exemplo para cada tipo de ligação."
|
81 |
+
],
|
82 |
+
["请帮我编写一封邮件,向供应商询问延迟交货的原因,并要求提供最新的发货时间表。"],
|
83 |
+
[
|
84 |
+
"Expliquez l'impact des médias sociaux sur la politique contemporaine en France, en mettant l'accent sur un exemple précis d'une élection récente."
|
85 |
+
],
|
86 |
+
[
|
87 |
+
"Descrivi il processo di unificazione italiana nel XIX secolo, concentrandoti sul ruolo di figure chiave come Garibaldi e Cavour."
|
88 |
+
],
|
89 |
+
[
|
90 |
+
"Erklären Sie, wie die Gesetze der Thermodynamik in der Physik funktionieren und geben Sie Beispiele für deren Anwendung im Alltag."
|
91 |
+
],
|
92 |
+
[
|
93 |
+
"第二次世界大戦後の日本経済の復興過程について説明し、その過程でアメリカの経済援助が果たした役割を分析してください。"
|
94 |
+
],
|
95 |
+
[
|
96 |
+
"Напишите эссе о том, как революция 1917 года изменила политический ландшафт России и какие долгосрочные последствия она имела для страны."
|
97 |
+
],
|
98 |
+
[
|
99 |
+
"Pomóż mi zrozumieć podstawy fizyki kwantowej: wyjaśnij, co to jest zasada nieoznaczoności Heisenberga i jakie ma ona znaczenie w kontekście mikroskopowych zjawisk."
|
100 |
+
],
|
101 |
+
[
|
102 |
+
"Schrijf een informatieve tekst over de invloed van de VOC (Vereenigde Oostindische Compagnie) op de economische en politieke ontwikkelingen in de Nederlandse Gouden Eeuw."
|
103 |
+
],
|
104 |
+
[
|
105 |
+
"भारत के स्वतंत्रता संग्राम में महात्मा गांधी के नेतृत्व की भूमिका और उनके असहयोग आंदोलन के प्रभाव पर एक निबंध लिखिए।"
|
106 |
+
],
|
107 |
+
[
|
108 |
+
"Türkçe dil bilgisi konusunda yardım eder misiniz? Cümlede eksik olan fiili bulmam için birkaç örnek cümle yazın."
|
109 |
+
],
|
110 |
+
[
|
111 |
+
"Jelaskan bagaimana teori relativitas umum Einstein mempengaruhi pemahaman kita tentang gravitasi dan ruang-waktu, serta berikan contohnya dalam kehidupan sehari-hari."
|
112 |
+
],
|
113 |
]
|
114 |
|
115 |
random.shuffle(EXAMPLES)
|
|
|
864 |
additional_inputs_accordion=gr.Accordion(label="Additional Inputs", open=True),
|
865 |
stop_btn="Stop",
|
866 |
cache_examples=False,
|
867 |
+
examples=EXAMPLES,
|
868 |
examples_per_page=8,
|
869 |
concurrency_limit=100,
|
870 |
)
|