Update app.py
Browse files
app.py
CHANGED
@@ -45,7 +45,7 @@ def generate_report_with_groq(query, results):
|
|
45 |
if __name__ == "__main__":
|
46 |
# Load dataset
|
47 |
csv_path = "energy_usage_data.csv" # Ensure this CSV is uploaded to your working directory
|
48 |
-
data = pd.read_csv(
|
49 |
|
50 |
# Preprocess data (if needed)
|
51 |
data.fillna("", inplace=True)
|
|
|
45 |
if __name__ == "__main__":
|
46 |
# Load dataset
|
47 |
csv_path = "energy_usage_data.csv" # Ensure this CSV is uploaded to your working directory
|
48 |
+
data = pd.read_csv(csv_path)
|
49 |
|
50 |
# Preprocess data (if needed)
|
51 |
data.fillna("", inplace=True)
|