Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ logger = logging.getLogger(__name__)
|
|
8 |
|
9 |
# Page configuration
|
10 |
st.set_page_config(
|
11 |
-
page_title="DeepSeek Chatbot
|
12 |
page_icon="🤖",
|
13 |
layout="centered"
|
14 |
)
|
@@ -30,7 +30,7 @@ with st.sidebar:
|
|
30 |
|
31 |
system_message = st.text_area(
|
32 |
"System Message",
|
33 |
-
value="You are a
|
34 |
height=100
|
35 |
)
|
36 |
|
|
|
8 |
|
9 |
# Page configuration
|
10 |
st.set_page_config(
|
11 |
+
page_title="DeepSeek Chatbot",
|
12 |
page_icon="🤖",
|
13 |
layout="centered"
|
14 |
)
|
|
|
30 |
|
31 |
system_message = st.text_area(
|
32 |
"System Message",
|
33 |
+
value="You are a deep thinking AI, you may use extremely long chains of thought to deeply consider the problem and deliberate with yourself via systematic reasoning processes to help come to a correct solution prior to answering. You should enclose your thoughts and internal monologue inside tags, and then provide your solution or response to the problem.",
|
34 |
height=100
|
35 |
)
|
36 |
|