ravi259 commited on
Commit
26244d8
·
1 Parent(s): 8557154
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -395,7 +395,9 @@ if st.button('Get Loan Transactions', type="primary"):
395
 
396
  response_2 = OpenAI().complete(prompt_template_2.format(response_1=st.session_state.response, loan_data=result.lower()))
397
  #st.write(response_2)
398
- st.table(create_dataframe_from_text_2(response_2.text))
 
 
399
 
400
  st.balloons()
401
 
 
395
 
396
  response_2 = OpenAI().complete(prompt_template_2.format(response_1=st.session_state.response, loan_data=result.lower()))
397
  #st.write(response_2)
398
+ df = create_dataframe_from_text_2(response_2.text)
399
+ st.write(df.size)
400
+ #st.table(create_dataframe_from_text_2(response_2.text))
401
 
402
  st.balloons()
403