Spaces:
Build error
Build error
modified app script
Browse files
app.py
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.set_page_config(
|
| 4 |
+
page_title="BreedmasterAI Chatbot",
|
| 5 |
+
page_icon='💬',
|
| 6 |
+
layout='wide'
|
| 7 |
+
)
|
| 8 |
+
|
| 9 |
+
st.header("Chatbot Implementations with Langchain")
|
| 10 |
+
st.markdown("# Welcome to BreedmasterAI!")
|
| 11 |
+
st.markdown("## Your go-to assistant for all dog breed-related information.")
|
| 12 |
+
st.markdown("""
|
| 13 |
+
BreedmasterAI is here to help you with all your queries about dog breeds. You can ask about:
|
| 14 |
+
- **Characteristics** of different breeds
|
| 15 |
+
- **Care requirements** for your favorite breed
|
| 16 |
+
- Common **health issues** and their treatments
|
| 17 |
+
- And much more!
|
| 18 |
+
|
| 19 |
+
Simply type your question below and get detailed, easy-to-understand answers.
|
| 20 |
+
""")
|
| 21 |
+
st.write("Ask any question about dog breeds, and Breedmaster AI will provide detailed information.")
|