Update app.py
Browse files
app.py
CHANGED
@@ -164,9 +164,13 @@ async def generate(request: Request):
|
|
164 |
|
165 |
# Define the system prompt - sent with every request
|
166 |
system_prompt_content = (
|
167 |
-
"You are a helpful AI assistant for data analysis. "
|
168 |
-
"Provide concise and actionable suggestions based on the data provided or questions asked. "
|
169 |
-
"Focus on data insights and actionable steps for report generation."
|
|
|
|
|
|
|
|
|
170 |
)
|
171 |
|
172 |
# Construct messages for the current request only
|
|
|
164 |
|
165 |
# Define the system prompt - sent with every request
|
166 |
system_prompt_content = (
|
167 |
+
"You are a helpful AI assistant for data analysis. ",
|
168 |
+
"Provide concise and actionable suggestions based on the data provided or questions asked. ",
|
169 |
+
"Focus on data insights and actionable steps for report generation.",
|
170 |
+
"Be concise and professional in your responses.",
|
171 |
+
"Avoid unnecessary verbosity and focus on key insights.",
|
172 |
+
"Ensure your responses are clear and directly address the questions asked.",
|
173 |
+
"Alway follow the instructions provided in the prompt and respond within instructed word limits.",
|
174 |
)
|
175 |
|
176 |
# Construct messages for the current request only
|