Sanchit Verma
commited on
Commit
·
cfa2238
1
Parent(s):
8ed438c
Remove unnecessary newline and whitespace in app.py
Browse filesThis commit removes an unnecessary newline and whitespace in the app.py file to maintain code cleanliness and consistency.
app.py
CHANGED
@@ -33,7 +33,6 @@ def handle_message(persona, user_input, history):
|
|
33 |
return history + [{"role": "assistant", "content": f"Error: {str(e)}"}]
|
34 |
|
35 |
|
36 |
-
|
37 |
with gr.Blocks() as app:
|
38 |
gr.Markdown("## 🤖 LLMates: Persona-based Chat Assistant")
|
39 |
|
@@ -87,4 +86,4 @@ with gr.Blocks() as app:
|
|
87 |
|
88 |
# main function
|
89 |
if __name__ == "__main__":
|
90 |
-
app.launch()
|
|
|
33 |
return history + [{"role": "assistant", "content": f"Error: {str(e)}"}]
|
34 |
|
35 |
|
|
|
36 |
with gr.Blocks() as app:
|
37 |
gr.Markdown("## 🤖 LLMates: Persona-based Chat Assistant")
|
38 |
|
|
|
86 |
|
87 |
# main function
|
88 |
if __name__ == "__main__":
|
89 |
+
app.launch()
|