Merge pull request #352 from SmashedFrenzy16/main
Update `chat.py` removing an unnecessary string
This commit is contained in:
commit
8d37a0912d
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ def query(question):
|
|||
response = st.session_state['chat'].ask_assistant(question)
|
||||
return response
|
||||
|
||||
prompt = st.text_input("What do you want to know: ","", key="input")
|
||||
prompt = st.text_input(f"What do you want to know: ", key="input")
|
||||
|
||||
if st.button('Submit', key='generationSubmit'):
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue