Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -49,6 +49,6 @@ def chat(prompt, history):
|
|
49 |
|
50 |
return model(system_data + get_history(history)+ get_user_data(prompt)).content
|
51 |
|
52 |
-
demo = gr.ChatInterface(chat,
|
53 |
|
54 |
demo.launch()
|
|
|
49 |
|
50 |
return model(system_data + get_history(history)+ get_user_data(prompt)).content
|
51 |
|
52 |
+
demo = gr.ChatInterface(chat, chatbot=gr.Chatbot(),title="ArunGPT",theme = gr.themes.Soft(), description="Hello this is chatbot is created for only educational purpose and is powered by mistral 8x 7b model").queue()
|
53 |
|
54 |
demo.launch()
|