Benjy commited on
Commit
cc59879
·
verified ·
1 Parent(s): 25634f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -21,6 +21,11 @@ def main():
21
  if 'input_text' not in st.session_state:
22
  st.session_state.input_text = ""
23
 
 
 
 
 
 
24
  # User input with a unique key that gets reset
25
  user_input = st.text_input("Tell us what's happening:", key="input_text", on_change=handle_input)
26
 
 
21
  if 'input_text' not in st.session_state:
22
  st.session_state.input_text = ""
23
 
24
+ #Credit
25
+ st.write(" ")
26
+ st.write("Visit us [here](https://ai-solutions.ai) for more AI Solutions.")
27
+ st.write(" ")
28
+
29
  # User input with a unique key that gets reset
30
  user_input = st.text_input("Tell us what's happening:", key="input_text", on_change=handle_input)
31