quocdat25 commited on
Commit
5880b6f
1 Parent(s): 6feb994

Upload folder using huggingface_hub

Browse files
.ipynb_checkpoints/chat_gradio-checkpoint.py CHANGED
@@ -24,7 +24,10 @@ def predict(message, history):
24
 
25
  return response
26
 
27
- gr.ChatInterface(predict).launch()
 
 
 
28
 
29
 
30
 
 
24
 
25
  return response
26
 
27
+ gr.ChatInterface(
28
+ predict,
29
+ description="Which cryptocurrency are you looking to delve into? E.g: Doge, ETH, BTC... "
30
+ ).launch()
31
 
32
 
33
 
chat_gradio.py CHANGED
@@ -24,7 +24,10 @@ def predict(message, history):
24
 
25
  return response
26
 
27
- gr.ChatInterface(predict).launch()
 
 
 
28
 
29
 
30
 
 
24
 
25
  return response
26
 
27
+ gr.ChatInterface(
28
+ predict,
29
+ description="Which cryptocurrency are you looking to delve into? E.g: Doge, ETH, BTC... "
30
+ ).launch()
31
 
32
 
33