Update app.py
Browse files
app.py
CHANGED
@@ -474,7 +474,7 @@ if st.session_state['pdf_processed']:
|
|
474 |
st.warning("Please enter at least one topic and description.")
|
475 |
st.stop()
|
476 |
|
477 |
-
analyzer = AIAnalysis()
|
478 |
processed_df = analyzer.process_dataframe(st.session_state['df'], topics)
|
479 |
extracted_df = extract_excerpts(processed_df)
|
480 |
|
|
|
474 |
st.warning("Please enter at least one topic and description.")
|
475 |
st.stop()
|
476 |
|
477 |
+
analyzer = AIAnalysis(client)
|
478 |
processed_df = analyzer.process_dataframe(st.session_state['df'], topics)
|
479 |
extracted_df = extract_excerpts(processed_df)
|
480 |
|