awacke1 commited on
Commit
dad973e
·
1 Parent(s): 7af9d8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -281,7 +281,8 @@ def create_file(filename, prompt, response, should_save=True):
281
  if not should_save:
282
  return
283
  base_filename, ext = os.path.splitext(filename)
284
- has_python_code = bool(re.search(r"```python([\s\S]*?)```", response))
 
285
  if ext in ['.txt', '.htm', '.md']:
286
  with open(f"{base_filename}.md", 'w') as file:
287
  content = prompt.strip() + '\r\n' + response
 
281
  if not should_save:
282
  return
283
  base_filename, ext = os.path.splitext(filename)
284
+ has_python_code = re.search(r"```python([\s\S]*?)```", prompt.strip() + '\r\n' + response)
285
+ has_python_code = bool(re.search(r"```python([\s\S]*?)```", prompt.strip() + '\r\n' + response))
286
  if ext in ['.txt', '.htm', '.md']:
287
  with open(f"{base_filename}.md", 'w') as file:
288
  content = prompt.strip() + '\r\n' + response