Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,6 @@ def chatbot(text):
|
|
| 22 |
def main():
|
| 23 |
|
| 24 |
st.title("convo-bot")
|
| 25 |
-
# st.write("Enter your message in the input box below.")
|
| 26 |
|
| 27 |
user_input = st.text_input("user:")
|
| 28 |
|
|
@@ -34,5 +33,6 @@ def main():
|
|
| 34 |
if __name__ == '__main__':
|
| 35 |
main()
|
| 36 |
|
| 37 |
-
# https://
|
| 38 |
-
# https://huggingface.co/
|
|
|
|
|
|
| 22 |
def main():
|
| 23 |
|
| 24 |
st.title("convo-bot")
|
|
|
|
| 25 |
|
| 26 |
user_input = st.text_input("user:")
|
| 27 |
|
|
|
|
| 33 |
if __name__ == '__main__':
|
| 34 |
main()
|
| 35 |
|
| 36 |
+
# https://huggingface.co/docs/transformers/model_doc/blenderbot
|
| 37 |
+
# https://huggingface.co/facebook/blenderbot-400M-distill
|
| 38 |
+
# https://streamlit.io/
|