Update app.py
Browse files
app.py
CHANGED
|
@@ -112,7 +112,7 @@ with gr.Blocks(theme=theme) as chatbot:
|
|
| 112 |
gr.ChatInterface(
|
| 113 |
fn=respond,
|
| 114 |
additional_inputs=[character_name, character_class, character_race, character_alignment], # Pass name into function!
|
| 115 |
-
chatbot=gr.Chatbot(value=[
|
| 116 |
type="messages",
|
| 117 |
examples=None)
|
| 118 |
|
|
|
|
| 112 |
gr.ChatInterface(
|
| 113 |
fn=respond,
|
| 114 |
additional_inputs=[character_name, character_class, character_race, character_alignment], # Pass name into function!
|
| 115 |
+
chatbot=gr.Chatbot(value=["assistant", "Hi there! I'm your assistant. How can I help you today?"]),
|
| 116 |
type="messages",
|
| 117 |
examples=None)
|
| 118 |
|