Skip to content

Commit

Permalink
added greetings
Browse files Browse the repository at this point in the history
  • Loading branch information
Gopps95 committed Mar 19, 2024
1 parent f3e8541 commit b8e041d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions greetings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import streamlit as st

st.title("DialogDroid")
st.write("Your new virtual assistant")
name = st.text_input(label="",placeholder="Enter your name", max_chars=50)
if st.button('Submit'):
st.write('Hi ' + name + ". How can I assist you today ?")

0 comments on commit b8e041d

Please sign in to comment.