Update app.py
Browse files
app.py
CHANGED
@@ -110,8 +110,8 @@ if userinput and api_key and st.button("Extract Claims", key="claims_extraction"
|
|
110 |
|
111 |
# Display generated objectives for all chunks
|
112 |
learning_status_placeholder.text(f"Patentable Claims Extracted!\n{all_extracted_claims.strip()}")
|
113 |
-
|
114 |
-
|
115 |
|
116 |
# Model Selection Dropdown
|
117 |
model_choice = st.selectbox(
|
@@ -165,6 +165,3 @@ if userinput and api_key and st.button("Extract Claims", key="claims_extraction"
|
|
165 |
|
166 |
# Display generated objectives for all chunks
|
167 |
learning_status_placeholder.text(f"Patentable Claims Extracted!\n{all_extracted_claims.strip()}")
|
168 |
-
|
169 |
-
# Citation
|
170 |
-
st.markdown("<sub>This app was created by [Taylor Ennen](https://github.com/taylor-ennen/GPT-Streamlit-MVP)</sub>")
|
|
|
110 |
|
111 |
# Display generated objectives for all chunks
|
112 |
learning_status_placeholder.text(f"Patentable Claims Extracted!\n{all_extracted_claims.strip()}")
|
113 |
+
with st.expander("See transcript"):
|
114 |
+
st.markdown(transcript)
|
115 |
|
116 |
# Model Selection Dropdown
|
117 |
model_choice = st.selectbox(
|
|
|
165 |
|
166 |
# Display generated objectives for all chunks
|
167 |
learning_status_placeholder.text(f"Patentable Claims Extracted!\n{all_extracted_claims.strip()}")
|
|
|
|
|
|