Dawoodthouseef commited on
Commit
2c931dc
·
1 Parent(s): 6383ae5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -3,12 +3,18 @@ from gradio_client import Client
3
  from time import sleep
4
  from ctransformers import AutoModelForCausalLM
5
  # Constants
6
- TITLE = "Mistrial 7B Chatbot"
7
  DESCRIPTION = """
8
- This Space demonstrates model [Mistrial-7b-]
9
  """
10
 
11
  # Initialize client
 
 
 
 
 
 
12
 
13
 
14
  with st.sidebar:
 
3
  from time import sleep
4
  from ctransformers import AutoModelForCausalLM
5
  # Constants
6
+ TITLE = "Mistrial Chat"
7
  DESCRIPTION = """
8
+ Mistrial CHATBOT similar to CHATGPT,Bard
9
  """
10
 
11
  # Initialize client
12
+ # Set the name of the Streamlit app
13
+ st.set_page_config(
14
+ page_title="Mistrial Chatbot",
15
+ page_icon="🦙",
16
+ layout="centered"
17
+ )
18
 
19
 
20
  with st.sidebar: