tarekfer8 commited on
Commit
6887d64
·
verified ·
1 Parent(s): 640c692

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -54,9 +54,15 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
54
  #question={"role": "user", "content": message}
55
  #prompt=pip(question,docs_text, docs_embeddings,mots_a_verifier,vector_db)
56
  #print(prompt)
57
-
 
 
 
 
58
  demo = gr.ChatInterface(
59
  respond,
 
 
60
  additional_inputs=[
61
 
62
  gr.Textbox(value="You are a friendly Chatbot.",placeholder="What would you like to know about Djezzy "),
 
54
  #question={"role": "user", "content": message}
55
  #prompt=pip(question,docs_text, docs_embeddings,mots_a_verifier,vector_db)
56
  #print(prompt)
57
+ custom_css = """
58
+ .gradio-container {
59
+ background-color: #EEE7DA;
60
+ }
61
+ """
62
  demo = gr.ChatInterface(
63
  respond,
64
+ title="Djezzy Chatbot",
65
+ css=custom_css,
66
  additional_inputs=[
67
 
68
  gr.Textbox(value="You are a friendly Chatbot.",placeholder="What would you like to know about Djezzy "),