Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def humanize(
|
|
14 |
):
|
15 |
ai_text = generate(f"Write an article about the topic: {text}")
|
16 |
print(f"AI Generated: {ai_text}")
|
17 |
-
ai_text = ai_text
|
18 |
result = client.predict(
|
19 |
text=text,
|
20 |
model_name=model,
|
|
|
14 |
):
|
15 |
ai_text = generate(f"Write an article about the topic: {text}")
|
16 |
print(f"AI Generated: {ai_text}")
|
17 |
+
ai_text = ai_text.choices[0].message
|
18 |
result = client.predict(
|
19 |
text=text,
|
20 |
model_name=model,
|