Skip to content

Commit

Permalink
Update chat.py removing unnecessary string
Browse files Browse the repository at this point in the history
  • Loading branch information
SmashedFrenzy16 committed Apr 16, 2023
1 parent d67c418 commit d1ecfda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/chatbot-kickstarter/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'):

Expand Down

0 comments on commit d1ecfda

Please sign in to comment.