CosmoAI commited on
Commit
54b212d
·
verified ·
1 Parent(s): f70d981

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ data = None
40
  for api in apis:
41
  data = make_call(api)
42
  if data: # Check for a successful response
43
- st.write(chat_completion.choices[0].message.content)
44
  break # Exit both the for loop and while loop
45
  else:
46
  st.write(f"Failed to retrieve data from.")
 
40
  for api in apis:
41
  data = make_call(api)
42
  if data: # Check for a successful response
43
+ st.write(data)
44
  break # Exit both the for loop and while loop
45
  else:
46
  st.write(f"Failed to retrieve data from.")