diff --git a/app.py b/app.py index f4c4cea..4f93adb 100644 --- a/app.py +++ b/app.py @@ -8,7 +8,7 @@ st.title('# DocVerifyRAG') st.write('## Anomaly detection for BIM document metadata') -with st.form('my_form'): +with st.form('analyze_form'): st.write('Enter your file metadata in the following schema:') text = st.text_input(label='Filename, Description, Discipline', value="", placeholder=str) @@ -35,7 +35,7 @@ st.write('## Querying Together.ai API') metadata = generate_metadata(docs) - form = st.form(key='my_form') + form = st.form(key='generate_form') form.text_input(label=f'Suggested Metadata Generated by {MODEL_NAME}') stop_button = form.form_submit_button(label='Submit') print(metadata)