Spaces:
Sleeping
Sleeping
Commit
·
2c931dc
1
Parent(s):
6383ae5
Update app.py
Browse files
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
|
7 |
DESCRIPTION = """
|
8 |
-
|
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:
|