Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,7 @@ import os
|
|
2 |
import openai
|
3 |
import gradio as gr
|
4 |
import time
|
|
|
5 |
|
6 |
# Set up password
|
7 |
username = os.getenv('username')
|
@@ -79,5 +80,6 @@ with gr.Blocks(css=custom_css) as demo:
|
|
79 |
msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
|
80 |
bot, chatbot, chatbot
|
81 |
)
|
|
|
82 |
|
83 |
demo.launch(auth=(username, password))
|
|
|
2 |
import openai
|
3 |
import gradio as gr
|
4 |
import time
|
5 |
+
from jtar import jtar_txt
|
6 |
|
7 |
# Set up password
|
8 |
username = os.getenv('username')
|
|
|
80 |
msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
|
81 |
bot, chatbot, chatbot
|
82 |
)
|
83 |
+
gr.Markdown(jtar_txt)
|
84 |
|
85 |
demo.launch(auth=(username, password))
|