Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -84,7 +84,8 @@ Q: Who won Super Bowl XX?
|
|
84 |
A: Chicago Bears
|
85 |
A2: <request><Wiki>Super Bowl XX<call>Super Bowl XX was an American football game between the National Football Conference (NFC) champion Chicago Bears and the American Football Conference (AFC) champion New England Patriots to decide the National Football League (NFL) champion for the 1985 season. The Bears defeated the Patriots by the score of 46–10, capturing their first NFL championship (and Chicago's first overall sports victory) since 1963, three years prior to the birth of the Super Bowl. Super Bowl XX was played on January 26, 1986 at the Louisiana Superdome in New Orleans.<response>
|
86 |
Result=Chicago Bears<submit>
|
87 |
-
"""
|
|
|
88 |
],
|
89 |
"StarCoderBase GSM8K": [
|
90 |
Client(
|
@@ -110,7 +111,8 @@ print(solution())
|
|
110 |
<call>72<response>
|
111 |
|
112 |
Result = 72 <submit>
|
113 |
-
"""
|
|
|
114 |
],
|
115 |
}
|
116 |
|
@@ -311,7 +313,7 @@ with gr.Blocks(theme=theme, analytics_enabled=False, css=css) as demo:
|
|
311 |
label="System prompt",
|
312 |
)
|
313 |
version.select(
|
314 |
-
lambda x: clients[x][2],
|
315 |
inputs=[version],
|
316 |
outputs=[system_prompt],
|
317 |
)
|
@@ -383,13 +385,21 @@ with gr.Blocks(theme=theme, analytics_enabled=False, css=css) as demo:
|
|
383 |
share_button = gr.Button(
|
384 |
"Share to community", elem_id="share-btn", visible=True
|
385 |
)
|
386 |
-
gr.Examples(
|
387 |
-
examples=
|
388 |
inputs=[instruction],
|
389 |
cache_examples=False,
|
390 |
-
fn=process_example,
|
391 |
-
outputs=[output, output2],
|
392 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
# gr.Markdown(FORMATS)
|
394 |
|
395 |
submit.click(
|
|
|
84 |
A: Chicago Bears
|
85 |
A2: <request><Wiki>Super Bowl XX<call>Super Bowl XX was an American football game between the National Football Conference (NFC) champion Chicago Bears and the American Football Conference (AFC) champion New England Patriots to decide the National Football League (NFL) champion for the 1985 season. The Bears defeated the Patriots by the score of 46–10, capturing their first NFL championship (and Chicago's first overall sports victory) since 1963, three years prior to the birth of the Super Bowl. Super Bowl XX was played on January 26, 1986 at the Louisiana Superdome in New Orleans.<response>
|
86 |
Result=Chicago Bears<submit>
|
87 |
+
""",
|
88 |
+
["Q: In which country is Oberhofen situated?", "Q: Irish Olympic champion Michelle smith was suspended in 1999 over drug allegations in which sport?"]
|
89 |
],
|
90 |
"StarCoderBase GSM8K": [
|
91 |
Client(
|
|
|
111 |
<call>72<response>
|
112 |
|
113 |
Result = 72 <submit>
|
114 |
+
""",
|
115 |
+
["Q: Tim has $400, and he received $1021. How much does he have?"]
|
116 |
],
|
117 |
}
|
118 |
|
|
|
313 |
label="System prompt",
|
314 |
)
|
315 |
version.select(
|
316 |
+
lambda x: (clients[x][2]),
|
317 |
inputs=[version],
|
318 |
outputs=[system_prompt],
|
319 |
)
|
|
|
385 |
share_button = gr.Button(
|
386 |
"Share to community", elem_id="share-btn", visible=True
|
387 |
)
|
388 |
+
gr_examples = gr.Examples(
|
389 |
+
examples=[example for client in clients.values() for example in client[3]],
|
390 |
inputs=[instruction],
|
391 |
cache_examples=False,
|
|
|
|
|
392 |
)
|
393 |
+
|
394 |
+
# def update(version):
|
395 |
+
# return clients[version][2],
|
396 |
+
|
397 |
+
# version.select(
|
398 |
+
# lambda x: (clients[x][2], clients[x][3]),
|
399 |
+
# inputs=[version],
|
400 |
+
# outputs=[system_prompt, gr_examples],
|
401 |
+
# )
|
402 |
+
|
403 |
# gr.Markdown(FORMATS)
|
404 |
|
405 |
submit.click(
|