Spaces:
Runtime error
Runtime error
Commit ·
01b040c
1
Parent(s): 3fe3bde
Upload folder using huggingface_hub
Browse files- conv_app.py +3 -1
conv_app.py
CHANGED
|
@@ -2,6 +2,8 @@ import gradio as gr
|
|
| 2 |
from conversation import make_conversation, auth_function
|
| 3 |
import random
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
|
| 7 |
demo.launch(auth=auth_function)
|
|
|
|
| 2 |
from conversation import make_conversation, auth_function
|
| 3 |
import random
|
| 4 |
|
| 5 |
+
with gr.Blocks(css="style.css") as demo:
|
| 6 |
+
gr.Markdown("##DR. VAI")
|
| 7 |
+
gr.ChatInterface(make_conversation).queue()
|
| 8 |
|
| 9 |
demo.launch(auth=auth_function)
|