test
Browse files- user_interface.py +4 -0
user_interface.py
CHANGED
@@ -143,5 +143,9 @@ with right_col:
|
|
143 |
if st.session_state.ai_result:
|
144 |
st.write(st.session_state.ai_result)
|
145 |
|
|
|
|
|
|
|
|
|
146 |
|
147 |
st.markdown('</div>', unsafe_allow_html=True)
|
|
|
143 |
if st.session_state.ai_result:
|
144 |
st.write(st.session_state.ai_result)
|
145 |
|
146 |
+
st.markdown(
|
147 |
+
f"<span style='font-size:16px;'>This AI model is trained from the following document: <a href='{pdf_url}' target='_blank' style='color: blue;'>View PDF</a></span>",
|
148 |
+
unsafe_allow_html=True,
|
149 |
+
)
|
150 |
|
151 |
st.markdown('</div>', unsafe_allow_html=True)
|