Spaces:
Runtime error
Runtime error
Commit ·
f078020
1
Parent(s): 1ad27de
Update app.py
Browse files
app.py
CHANGED
|
@@ -75,13 +75,13 @@ def format_chat_prompt(message: str, chat_history, bot_name: str, instructions:
|
|
| 75 |
return prompt
|
| 76 |
|
| 77 |
|
| 78 |
-
def chat(
|
| 79 |
with gr.Column(elem_id="chat_container"):
|
| 80 |
with gr.Row():
|
| 81 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
| 82 |
with gr.Row():
|
| 83 |
inputs = gr.Textbox(
|
| 84 |
-
placeholder=f"
|
| 85 |
label="Type an input and press Enter",
|
| 86 |
max_lines=3,
|
| 87 |
)
|
|
|
|
| 75 |
return prompt
|
| 76 |
|
| 77 |
|
| 78 |
+
def chat():
|
| 79 |
with gr.Column(elem_id="chat_container"):
|
| 80 |
with gr.Row():
|
| 81 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
| 82 |
with gr.Row():
|
| 83 |
inputs = gr.Textbox(
|
| 84 |
+
placeholder=f"Hi there! Tell me something about yourself.",
|
| 85 |
label="Type an input and press Enter",
|
| 86 |
max_lines=3,
|
| 87 |
)
|