Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -24,16 +24,7 @@ def chat_with_groq(user_input, additional_context=None):
|
|
24 |
|
25 |
|
26 |
|
27 |
-
demo = gr.ChatInterface(fn=chat_with_groq,
|
28 |
-
chatbot=gr.Chatbot,
|
29 |
-
textbox=gr.Textbox(placeholder="Ask me any question"),
|
30 |
-
title="Hey NOPE",
|
31 |
-
theme="Monochrome",
|
32 |
-
description="Welcome to the world of NOPE",
|
33 |
-
examples=["Need some content Idea", "Generate some Thumbnail Text"],
|
34 |
-
retry_btn=None,
|
35 |
-
undo_btn="Delete Previous",
|
36 |
-
clear_btn="Clear",)
|
37 |
|
38 |
if __name__ == "__main__":
|
39 |
demo.launch()
|
|
|
24 |
|
25 |
|
26 |
|
27 |
+
demo = gr.ChatInterface(fn=chat_with_groq, textbox=gr.Textbox(placeholder="Ask me any question"), title="Hey NOPE", theme="Monochrome", description="Welcome to the world of NOPE", examples=["Need some content Idea", "Generate some Thumbnail Text"], retry_btn=None, undo_btn="Delete Previous", clear_btn="Clear",)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
if __name__ == "__main__":
|
30 |
demo.launch()
|