lukestanley commited on
Commit
859cc57
1 Parent(s): db708d2

Change return type of improvement_loop to dict in app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -71,9 +71,8 @@ from chill import improvement_loop
71
 
72
  def chill_out(text):
73
  print("Got this input:", text)
74
- result: str = improvement_loop(text)
75
  print("Got this result:", result)
76
- result: dict = json.loads(result)
77
 
78
  formatted_output = f"""
79
  <div>
 
71
 
72
  def chill_out(text):
73
  print("Got this input:", text)
74
+ result: dict = improvement_loop(text)
75
  print("Got this result:", result)
 
76
 
77
  formatted_output = f"""
78
  <div>