Spaces:
Running
Running
Commit ·
fd363ed
1
Parent(s): b8bb08b
Updated the system prompt
Browse files
app.py
CHANGED
|
@@ -87,8 +87,8 @@ def generate_flowchart(src_code: str) -> str:
|
|
| 87 |
</thinking>
|
| 88 |
graph TD
|
| 89 |
A[Start: check_status] --> B{val > 10}
|
| 90 |
-
B -- True --> C[Return
|
| 91 |
-
B -- False --> D[Return
|
| 92 |
""").strip()
|
| 93 |
|
| 94 |
# Casting else PyLance gets mad
|
|
|
|
| 87 |
</thinking>
|
| 88 |
graph TD
|
| 89 |
A[Start: check_status] --> B{val > 10}
|
| 90 |
+
B -- True --> C[Return 'Active']
|
| 91 |
+
B -- False --> D[Return 'Inactive']
|
| 92 |
""").strip()
|
| 93 |
|
| 94 |
# Casting else PyLance gets mad
|