Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,3 +15,4 @@ question_protocol = st.text_input("Provide instructions for how questions should
|
|
15 |
answer_protocol = st.text_input("Provide instructions for how answers should be generated", "Write answers based on the text")
|
16 |
sentence_chunks = st.slider("Number of sentences per question/answer pair", min_value=1, max_value=3, value=2, step=1)
|
17 |
openai_api_key = st.text_input("Enter your OpenAI API key", type="password")
|
|
|
|
15 |
answer_protocol = st.text_input("Provide instructions for how answers should be generated", "Write answers based on the text")
|
16 |
sentence_chunks = st.slider("Number of sentences per question/answer pair", min_value=1, max_value=3, value=2, step=1)
|
17 |
openai_api_key = st.text_input("Enter your OpenAI API key", type="password")
|
18 |
+
submit = st.button("Submit")
|