Spaces:
Sleeping
Sleeping
Leonardo Kamigauti
commited on
Commit
·
2be2acd
1
Parent(s):
991fef8
Improve starting message
Browse files- Gradio_UI.py +2 -1
Gradio_UI.py
CHANGED
@@ -262,7 +262,8 @@ class GradioUI:
|
|
262 |
def launch(self, **kwargs):
|
263 |
import gradio as gr
|
264 |
|
265 |
-
history = [gr.ChatMessage(role="assistant", content="I
|
|
|
266 |
|
267 |
with gr.Blocks(fill_height=True) as demo:
|
268 |
stored_messages = gr.State([])
|
|
|
262 |
def launch(self, **kwargs):
|
263 |
import gradio as gr
|
264 |
|
265 |
+
history = [gr.ChatMessage(role="assistant", content="I'm the Data Science course bot! Please describe your current study needs and knowledge level and I will provide you with a custom code exercise."),
|
266 |
+
gr.ChatMessage(role="assistant", content="You can start with something like 'I need help with python indexing'.")]
|
267 |
|
268 |
with gr.Blocks(fill_height=True) as demo:
|
269 |
stored_messages = gr.State([])
|