Rishi-Jain-27 commited on
Commit
fd363ed
·
1 Parent(s): b8bb08b

Updated the system prompt

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 "Active"]
91
- B -- False --> D[Return "Inactive"]
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