Spaces:
Sleeping
Sleeping
Commit ·
859cc57
1
Parent(s): db708d2
Change return type of improvement_loop to dict in app.py
Browse files
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:
|
| 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>
|