mirror of
https://github.com/openai/openai-cookbook
synced 2024-11-08 01:10:29 +00:00
Update chat.py removing unnecessary string
This commit is contained in:
parent
82d81a9ac0
commit
40dff7e13c
@ -51,7 +51,7 @@ def query(question):
|
|||||||
response = st.session_state['chat'].ask_assistant(question)
|
response = st.session_state['chat'].ask_assistant(question)
|
||||||
return response
|
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'):
|
if st.button('Submit', key='generationSubmit'):
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user