Update script_for_automation.py
Browse files- script_for_automation.py +3 -4
script_for_automation.py
CHANGED
|
@@ -390,10 +390,9 @@ def generate_markdown_output(df):
|
|
| 390 |
differences = row['Differences']
|
| 391 |
|
| 392 |
# Loop through the differences list
|
| 393 |
-
for
|
| 394 |
-
|
| 395 |
-
|
| 396 |
-
markdown += f"{value}\n"
|
| 397 |
|
| 398 |
# 4. Prompts
|
| 399 |
markdown += "\n## Prompts\n"
|
|
|
|
| 390 |
differences = row['Differences']
|
| 391 |
|
| 392 |
# Loop through the differences list
|
| 393 |
+
for key, value in differences.items():
|
| 394 |
+
markdown += f"#### {key.capitalize()}\n"
|
| 395 |
+
markdown += f"{value}\n"
|
|
|
|
| 396 |
|
| 397 |
# 4. Prompts
|
| 398 |
markdown += "\n## Prompts\n"
|