Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -48,6 +48,10 @@ iface = gr.Interface(
|
|
| 48 |
outputs=[gr.Textbox(label="Answer"), gr.Textbox(label="Latency")],
|
| 49 |
title="SciGemma",
|
| 50 |
description="Ask a science question and get an answer from the fine-tuned Gemma 2b-it model.",
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
)
|
| 52 |
|
| 53 |
if __name__ == "__main__":
|
|
|
|
| 48 |
outputs=[gr.Textbox(label="Answer"), gr.Textbox(label="Latency")],
|
| 49 |
title="SciGemma",
|
| 50 |
description="Ask a science question and get an answer from the fine-tuned Gemma 2b-it model.",
|
| 51 |
+
examples=[
|
| 52 |
+
["What does air consist of?"],
|
| 53 |
+
["What is an atom?"],
|
| 54 |
+
]
|
| 55 |
)
|
| 56 |
|
| 57 |
if __name__ == "__main__":
|