Spaces:
Runtime error
Runtime error
Commit
·
45b5556
1
Parent(s):
28da8a8
Update main.py
Browse files
main.py
CHANGED
@@ -64,9 +64,15 @@ class UserInterface():
|
|
64 |
|
65 |
|
66 |
st.subheader("Context")
|
67 |
-
context = st.text_input(
|
|
|
|
|
|
|
68 |
st.subheader("Question")
|
69 |
-
question = st.text_input(
|
|
|
|
|
|
|
70 |
|
71 |
|
72 |
template = """
|
|
|
64 |
|
65 |
|
66 |
st.subheader("Context")
|
67 |
+
context = st.text_input(
|
68 |
+
label="Context",
|
69 |
+
disabled=text_input_visibility
|
70 |
+
)
|
71 |
st.subheader("Question")
|
72 |
+
question = st.text_input(
|
73 |
+
label="Question",
|
74 |
+
disabled=text_input_visibility
|
75 |
+
)
|
76 |
|
77 |
|
78 |
template = """
|