Spaces:
Sleeping
Sleeping
File size: 745 Bytes
4b446a4 cb64b2f 4fa024f cb64b2f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import streamlit as st
st.set_page_config(
page_title="You Name It!",
page_icon="π",
)
st.write("# Welcome to YouNameIt chatbot! π")
st.sidebar.success("Select a chatbot mode above.")
st.markdown(
"""
YouNameIt is a project helping people with aphasia practice their word retrieval skill and assisting them to remember words on a daily basis.
**π Select a chatbot mode from the sidebar** to test our app!
### What new features are planned?
- Adaptation to German language and more;
- Speech-to-text suppport;
- Android & IOS mobile apps.
### For any suggestions or ideas please contact us.
- Julian []()
- [Nursulu](https://www.linkedin.com/in/nursulu-sagimbayeva-61383a208/)
"""
)
|