Spaces:
Runtime error
Runtime error
time
Browse files
app.py
CHANGED
@@ -13,6 +13,7 @@ import json
|
|
13 |
import subprocess
|
14 |
import gradio as gr
|
15 |
import atexit
|
|
|
16 |
|
17 |
today_date = datetime.today().strftime("%B %-d, %Y") # noqa: DTZ002
|
18 |
|
@@ -226,6 +227,7 @@ with gr.Blocks(fill_height=True, css_paths=css_file_path, theme=custom_theme, ti
|
|
226 |
chat_interface = gr.ChatInterface(
|
227 |
fn=generate,
|
228 |
examples=[
|
|
|
229 |
["Explain the concept of quantum computing to someone with no background in physics or computer science."],
|
230 |
["What is OpenShift?"],
|
231 |
["What's the importance of low latency inference?"],
|
|
|
13 |
import subprocess
|
14 |
import gradio as gr
|
15 |
import atexit
|
16 |
+
import time
|
17 |
|
18 |
today_date = datetime.today().strftime("%B %-d, %Y") # noqa: DTZ002
|
19 |
|
|
|
227 |
chat_interface = gr.ChatInterface(
|
228 |
fn=generate,
|
229 |
examples=[
|
230 |
+
["What is 1+1?"],
|
231 |
["Explain the concept of quantum computing to someone with no background in physics or computer science."],
|
232 |
["What is OpenShift?"],
|
233 |
["What's the importance of low latency inference?"],
|