Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -40,44 +40,89 @@
|
|
40 |
# if __name__ == "__main__":
|
41 |
# main()
|
42 |
import streamlit as st
|
43 |
-
from transformers import
|
44 |
-
|
45 |
-
#
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
# Streamlit
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
-
if
|
82 |
-
|
|
|
|
|
|
|
|
|
83 |
|
|
|
40 |
# if __name__ == "__main__":
|
41 |
# main()
|
42 |
import streamlit as st
|
43 |
+
from transformers import pipeline
|
44 |
+
|
45 |
+
# Configure the Hugging Face API key
|
46 |
+
HUGGINGFACE_API_KEY = st.secrets['huggingface_api_key']
|
47 |
+
|
48 |
+
# Initialize the Hugging Face conversational model
|
49 |
+
# You can replace 'microsoft/DialoGPT-medium' with any other supported conversational model
|
50 |
+
chatbot = pipeline("conversational", model="microsoft/DialoGPT-medium")
|
51 |
+
|
52 |
+
# Function to get response from the Hugging Face model
|
53 |
+
def get_chatbot_response(user_input):
|
54 |
+
try:
|
55 |
+
conversation = chatbot(user_input)
|
56 |
+
return conversation[0]['generated_text'] # Extract the generated response
|
57 |
+
except Exception as e:
|
58 |
+
return f"Error: {str(e)}"
|
59 |
+
|
60 |
+
# Streamlit interface
|
61 |
+
st.set_page_config(page_title="Smart ChatBot", layout="centered")
|
62 |
+
|
63 |
+
# Custom CSS for chat bubbles with full width and emojis
|
64 |
+
st.markdown("""
|
65 |
+
<style>
|
66 |
+
.chat-container {
|
67 |
+
display: flex;
|
68 |
+
flex-direction: column;
|
69 |
+
width: 100%;
|
70 |
+
}
|
71 |
+
.chat-bubble {
|
72 |
+
width: 100%;
|
73 |
+
padding: 15px;
|
74 |
+
margin: 10px 0;
|
75 |
+
border-radius: 10px;
|
76 |
+
font-size: 18px;
|
77 |
+
color: white;
|
78 |
+
display: inline-block;
|
79 |
+
line-height: 1.5;
|
80 |
+
}
|
81 |
+
.user-bubble {
|
82 |
+
background: #6a82fb; /* Soft blue */
|
83 |
+
align-self: flex-end;
|
84 |
+
border-radius: 10px 10px 10px 10px;
|
85 |
+
}
|
86 |
+
.bot-bubble {
|
87 |
+
background: #fc5c7d; /* Soft pink */
|
88 |
+
align-self: flex-start;
|
89 |
+
border-radius: 10px 10px 10px 10px;
|
90 |
+
}
|
91 |
+
.chat-header {
|
92 |
+
# text-align: center;
|
93 |
+
font-size: 35px;
|
94 |
+
font-weight: bold;
|
95 |
+
margin-bottom: 20px;
|
96 |
+
color: #3d3d3d;
|
97 |
+
}
|
98 |
+
.emoji {
|
99 |
+
font-size: 22px;
|
100 |
+
margin-right: 10px;
|
101 |
+
}
|
102 |
+
</style>
|
103 |
+
""", unsafe_allow_html=True)
|
104 |
+
|
105 |
+
st.markdown('<div class="chat-header">Hugging Face Chatbot-Your AI Companion π»</div>', unsafe_allow_html=True)
|
106 |
+
st.write("Powered by Hugging Face for smart, engaging conversations. π€")
|
107 |
+
|
108 |
+
if "history" not in st.session_state:
|
109 |
+
st.session_state["history"] = []
|
110 |
+
|
111 |
+
with st.form(key="chat_form", clear_on_submit=True):
|
112 |
+
user_input = st.text_input("Your message here... βοΈ", max_chars=2000, label_visibility="collapsed")
|
113 |
+
submit_button = st.form_submit_button("Send π")
|
114 |
+
|
115 |
+
if submit_button:
|
116 |
+
if user_input:
|
117 |
+
response = get_chatbot_response(user_input)
|
118 |
+
st.session_state.history.append((user_input, response))
|
119 |
+
else:
|
120 |
+
st.warning("Please Enter A Prompt π
")
|
121 |
|
122 |
+
if st.session_state["history"]:
|
123 |
+
st.markdown('<div class="chat-container">', unsafe_allow_html=True)
|
124 |
+
for user_input, response in st.session_state["history"]:
|
125 |
+
st.markdown(f'<div class="chat-bubble user-bubble"><span class="emoji">π€</span>You: {user_input}</div>', unsafe_allow_html=True)
|
126 |
+
st.markdown(f'<div class="chat-bubble bot-bubble"><span class="emoji">π€</span>Bot: {response}</div>', unsafe_allow_html=True)
|
127 |
+
st.markdown('</div>', unsafe_allow_html=True)
|
128 |
|