Update app.py
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
import time
|
| 3 |
from openai import OpenAI
|
| 4 |
api_key = os.environ["OPENAI_API_KEY_PUBLIC"]
|
| 5 |
|
|
@@ -36,7 +36,7 @@ def wait():
|
|
| 36 |
return "Waiting for the answer."
|
| 37 |
|
| 38 |
temp = ask_me()
|
| 39 |
-
with gr.Blocks() as demo:
|
| 40 |
|
| 41 |
with gr.Row():
|
| 42 |
with gr.Column(scale=5):
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
import time, os
|
| 3 |
from openai import OpenAI
|
| 4 |
api_key = os.environ["OPENAI_API_KEY_PUBLIC"]
|
| 5 |
|
|
|
|
| 36 |
return "Waiting for the answer."
|
| 37 |
|
| 38 |
temp = ask_me()
|
| 39 |
+
with gr.Blocks(css="footer {visibility: hidden}") as demo:
|
| 40 |
|
| 41 |
with gr.Row():
|
| 42 |
with gr.Column(scale=5):
|