Share
Browse files
app.py
CHANGED
@@ -109,7 +109,7 @@ def chat_llama3_8b(message: str,
|
|
109 |
# Gradio block
|
110 |
chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
|
111 |
|
112 |
-
with gr.Blocks(fill_height=True, css=css) as
|
113 |
|
114 |
gr.Markdown(DESCRIPTION)
|
115 |
gr.ChatInterface(
|
@@ -149,4 +149,4 @@ with gr.Blocks(fill_height=True, css=css) as demo:
|
|
149 |
)
|
150 |
|
151 |
if __name__ == "__main__":
|
152 |
-
|
|
|
109 |
# Gradio block
|
110 |
chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
|
111 |
|
112 |
+
with gr.Blocks(fill_height=True, css=css) as aida:
|
113 |
|
114 |
gr.Markdown(DESCRIPTION)
|
115 |
gr.ChatInterface(
|
|
|
149 |
)
|
150 |
|
151 |
if __name__ == "__main__":
|
152 |
+
aida.launch(share=True)
|