Spaces:
Sleeping
Sleeping
Commit
·
f8eb477
1
Parent(s):
3f02ca8
Update app.py
Browse files
app.py
CHANGED
@@ -180,9 +180,9 @@ for i in range(row_count):
|
|
180 |
col1, col2, col3, col4 = st.columns(4)
|
181 |
|
182 |
with col1:
|
183 |
-
url = st.text_input(f'PDF URL {i+1}', key=f'url{i}'
|
184 |
with col2:
|
185 |
-
question = st.text_input(f'Question {i+1}', key=f'question{i}'
|
186 |
with col3:
|
187 |
if f'session_answer{i}' not in st.session_state:
|
188 |
st.session_state[f'session_answer{i}'] = ''
|
|
|
180 |
col1, col2, col3, col4 = st.columns(4)
|
181 |
|
182 |
with col1:
|
183 |
+
url = st.text_input(f'PDF URL {i+1}', key=f'url{i}')
|
184 |
with col2:
|
185 |
+
question = st.text_input(f'Question {i+1}', key=f'question{i}')
|
186 |
with col3:
|
187 |
if f'session_answer{i}' not in st.session_state:
|
188 |
st.session_state[f'session_answer{i}'] = ''
|