Spaces:
Sleeping
Sleeping
Update chat.py
Browse files
chat.py
CHANGED
@@ -89,9 +89,10 @@ class ChatHandler:
|
|
89 |
|
90 |
# Define the prompt template
|
91 |
template_query_generation = """
|
92 |
-
|
|
|
93 |
Only write the SQL query without explanations.
|
94 |
-
|
95 |
Schema:
|
96 |
{schema}
|
97 |
|
@@ -123,7 +124,7 @@ class ChatHandler:
|
|
123 |
|
124 |
except Exception as e:
|
125 |
print(f"Error executing SQL query: {str(e)}")
|
126 |
-
return "
|
127 |
|
128 |
# If no result, return an appropriate message
|
129 |
if not result:
|
@@ -134,7 +135,7 @@ class ChatHandler:
|
|
134 |
|
135 |
except Exception as e:
|
136 |
print( f"Error fetching schema details or processing query: {str(e)}")
|
137 |
-
return "
|
138 |
|
139 |
def answer_question(self, query, visual_query):
|
140 |
global global_df
|
@@ -153,26 +154,29 @@ class ChatHandler:
|
|
153 |
{
|
154 |
"name": "Database Schema",
|
155 |
"function": lambda q: self._load_schema_from_database(q),
|
156 |
-
"description": """Search within the database schema and generate SQL-based responses.
|
157 |
-
The database has single table 'tp_material_forecast' which contains the columns 'date', 'material_name', 'material_quantity', and 'type'.
|
158 |
-
|
159 |
-
|
160 |
-
|
|
|
|
|
|
|
161 |
},
|
162 |
]
|
163 |
|
164 |
agent_prompt = PromptTemplate(
|
165 |
input_variables=["input", "agent_scratchpad"],
|
166 |
template="""
|
167 |
-
You are a highly skilled AI assistant specializing in
|
168 |
-
I have
|
169 |
|
170 |
The data includes historical demand information for various items.
|
171 |
|
172 |
1. The uploaded document includes:
|
173 |
- **Date:** The date of demand entry.
|
174 |
- **Material Name:** The name of the material or equipment.
|
175 |
-
- **Material Quantity:** The number of units
|
176 |
- **Type:** Type contains actual or forecasted, actual represents the actual material utilized and forecasted represents the prediction by ai model.
|
177 |
|
178 |
2. I may ask questions such as:
|
@@ -182,12 +186,13 @@ class ChatHandler:
|
|
182 |
- Comparing demand values between two or more items.
|
183 |
|
184 |
Your task:
|
185 |
-
- If the query relates to forecasting
|
186 |
and provide precise, professional, and data-driven responses.
|
187 |
|
188 |
Make sure your answers are aligned with the uploaded document, depending on the context of the query.
|
189 |
-
display the response as mentioned in the tool description.
|
190 |
-
include the table data in the Final answer if
|
|
|
191 |
Tools available to you:
|
192 |
{tools}
|
193 |
|
@@ -249,7 +254,9 @@ class ChatHandler:
|
|
249 |
visual_response = None
|
250 |
return response, visual_response
|
251 |
except Exception as e:
|
252 |
-
|
|
|
|
|
253 |
|
254 |
|
255 |
|
@@ -259,7 +266,12 @@ def create_visualization_csv(visual_query):
|
|
259 |
#import matplotlib
|
260 |
#matplotlib.use('TkAgg') # Replace with 'QtAgg' or 'MacOSX' if on macOS
|
261 |
|
262 |
-
visual_query = visual_query + " create chart with suitable x and y axis as user requested.
|
|
|
|
|
|
|
|
|
|
|
263 |
|
264 |
|
265 |
llm_chart = OpenAI()
|
@@ -270,7 +282,7 @@ def create_visualization_csv(visual_query):
|
|
270 |
sdf = SmartDataframe(global_df, config={"llm": llm_chart})
|
271 |
llm_response = sdf.chat(visual_query)
|
272 |
if "no result" in llm_response:
|
273 |
-
return "
|
274 |
return llm_response
|
275 |
|
276 |
|
|
|
89 |
|
90 |
# Define the prompt template
|
91 |
template_query_generation = """
|
92 |
+
|
93 |
+
Based on the table schema below, write a mySQL query with correct syntax that would answer the user's question.
|
94 |
Only write the SQL query without explanations.
|
95 |
+
|
96 |
Schema:
|
97 |
{schema}
|
98 |
|
|
|
124 |
|
125 |
except Exception as e:
|
126 |
print(f"Error executing SQL query: {str(e)}")
|
127 |
+
return f"As you know I am still learning at this moment I am not able to respond to your question.\nThank you for your patience!"
|
128 |
|
129 |
# If no result, return an appropriate message
|
130 |
if not result:
|
|
|
135 |
|
136 |
except Exception as e:
|
137 |
print( f"Error fetching schema details or processing query: {str(e)}")
|
138 |
+
return f"As you know I am still learning at this moment I am not able to respond to your question.\nThank you for your patience!"
|
139 |
|
140 |
def answer_question(self, query, visual_query):
|
141 |
global global_df
|
|
|
154 |
{
|
155 |
"name": "Database Schema",
|
156 |
"function": lambda q: self._load_schema_from_database(q),
|
157 |
+
"description": """Search within the mysql database schema and generate SQL-based responses. write mySQL query with correct syntax.
|
158 |
+
The database has single table 'tp_material_forecast' which contains the columns 'date', 'material_name', 'material_quantity', and 'type'. Frame the query only with these four columns.
|
159 |
+
If the material name is given, frame the query in such a way that the material_name is not case-sensitive.
|
160 |
+
If the material name is not present in the table, return the proper message as "This material name is not in the database". Do not give any false values if the material name is not available in database.
|
161 |
+
display the response as a combination of response summary and the response data in the form of table. If the response has month column, display the month as name For example, January instead of displaying as 1.
|
162 |
+
If the user requested comparison between two or more years or the user asks for the data for all years, data should be shown for all the years with month as first column and the years like 2020, 2021 etc as the adjacent columns.
|
163 |
+
Do not show everything in the same column. (For example, if the user requested from 2020 to 2024, then display the output table with the columns [Month, Material value in 2020, Material value in 2020, Material value in 2021, Material value in 2022, Material value in 2023, Material value in 2024]) so that the records will be displayed for all the months from Jaunary to December across the years.
|
164 |
+
Always display the table data at the end in the Final answer even if it has a single value. If there is any error while executing the user question, kindly display the error message as 'As you know I am still learning at this moment I am not able to respond to your question.\nThank you for your patience!'""",
|
165 |
},
|
166 |
]
|
167 |
|
168 |
agent_prompt = PromptTemplate(
|
169 |
input_variables=["input", "agent_scratchpad"],
|
170 |
template="""
|
171 |
+
You are a highly skilled AI assistant specializing in mysql database.
|
172 |
+
I have a mysql database for material demand forecasts with columns as 'date', 'material_name', 'material_quantity', and 'type'.
|
173 |
|
174 |
The data includes historical demand information for various items.
|
175 |
|
176 |
1. The uploaded document includes:
|
177 |
- **Date:** The date of demand entry.
|
178 |
- **Material Name:** The name of the material or equipment.
|
179 |
+
- **Material Quantity:** The number of units actual or predicted.
|
180 |
- **Type:** Type contains actual or forecasted, actual represents the actual material utilized and forecasted represents the prediction by ai model.
|
181 |
|
182 |
2. I may ask questions such as:
|
|
|
186 |
- Comparing demand values between two or more items.
|
187 |
|
188 |
Your task:
|
189 |
+
- If the query relates to forecasting, extract the necessary information from it
|
190 |
and provide precise, professional, and data-driven responses.
|
191 |
|
192 |
Make sure your answers are aligned with the uploaded document, depending on the context of the query.
|
193 |
+
display the response as mentioned in the tool description.
|
194 |
+
include the table data in the Final answer even if there is a single value.
|
195 |
+
Do not display the first line and the last line of the table as '''
|
196 |
Tools available to you:
|
197 |
{tools}
|
198 |
|
|
|
254 |
visual_response = None
|
255 |
return response, visual_response
|
256 |
except Exception as e:
|
257 |
+
print(f"Error while processing your query: {str(e)}")
|
258 |
+
return f"As you know I am still learning at this moment I am not able to respond to your question.\nThank you for your patience!" , None
|
259 |
+
|
260 |
|
261 |
|
262 |
|
|
|
266 |
#import matplotlib
|
267 |
#matplotlib.use('TkAgg') # Replace with 'QtAgg' or 'MacOSX' if on macOS
|
268 |
|
269 |
+
visual_query = visual_query + """ create chart with suitable x and y axis as user requested.
|
270 |
+
use proper axis scale and mention axis values properly.
|
271 |
+
Do not miss any values.
|
272 |
+
Mention only month name in date axis and not the numbers or the date.
|
273 |
+
Do not place legend in the middle of the chart. Place the legend in such a way that the plotted chart is not hidden.
|
274 |
+
Return the image path only after plotting all the values."""
|
275 |
|
276 |
|
277 |
llm_chart = OpenAI()
|
|
|
282 |
sdf = SmartDataframe(global_df, config={"llm": llm_chart})
|
283 |
llm_response = sdf.chat(visual_query)
|
284 |
if "no result" in llm_response:
|
285 |
+
return f"As you know I am still learning at this moment I am not able to respond to your question.\nThank you for your patience!"
|
286 |
return llm_response
|
287 |
|
288 |
|