minko186 commited on
Commit
7b0b548
·
verified ·
1 Parent(s): 29e6656

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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["choices"][0]["message"]["content"]
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,