Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,99 +1,42 @@
|
|
1 |
import streamlit as st
|
2 |
-
from transformers import
|
3 |
-
|
4 |
-
#
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
model =
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
#
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
font-size: 18px;
|
44 |
-
color: white;
|
45 |
-
display: inline-block;
|
46 |
-
line-height: 1.5;
|
47 |
-
}
|
48 |
-
.user-bubble {
|
49 |
-
background: #6a82fb; /* Soft blue */
|
50 |
-
align-self: flex-end;
|
51 |
-
border-radius: 10px 10px 10px 10px;
|
52 |
-
}
|
53 |
-
.bot-bubble {
|
54 |
-
background: #fc5c7d; /* Soft pink */
|
55 |
-
align-self: flex-start;
|
56 |
-
border-radius: 10px 10px 10px 10px;
|
57 |
-
}
|
58 |
-
.chat-header {
|
59 |
-
font-size: 35px;
|
60 |
-
font-weight: bold;
|
61 |
-
margin-bottom: 20px;
|
62 |
-
color: #3d3d3d;
|
63 |
-
}
|
64 |
-
.emoji {
|
65 |
-
font-size: 22px;
|
66 |
-
margin-right: 10px;
|
67 |
-
}
|
68 |
-
</style>
|
69 |
-
""", unsafe_allow_html=True)
|
70 |
-
|
71 |
-
# Chat header and intro
|
72 |
-
st.markdown('<div class="chat-header">AI Chatbot - Your Companion π»</div>', unsafe_allow_html=True)
|
73 |
-
st.write("Powered by Hugging Face AI for smart, engaging conversations. π€")
|
74 |
-
|
75 |
-
# Initialize session state for conversation history if not already initialized
|
76 |
-
if "history" not in st.session_state:
|
77 |
-
st.session_state["history"] = []
|
78 |
-
|
79 |
-
# Create the chat form
|
80 |
-
with st.form(key="chat_form", clear_on_submit=True):
|
81 |
-
user_input = st.text_input("Your message here... βοΈ", max_chars=2000, label_visibility="collapsed")
|
82 |
-
submit_button = st.form_submit_button("Send π")
|
83 |
-
|
84 |
-
if submit_button:
|
85 |
-
if user_input:
|
86 |
-
# Get response from the chatbot
|
87 |
-
response = get_chatbot_response(user_input)
|
88 |
-
# Store user input and bot response in session state history
|
89 |
-
st.session_state.history.append((user_input, response))
|
90 |
-
else:
|
91 |
-
st.warning("Please Enter A Prompt π
")
|
92 |
-
|
93 |
-
# Display chat history
|
94 |
-
if st.session_state["history"]:
|
95 |
-
st.markdown('<div class="chat-container">', unsafe_allow_html=True)
|
96 |
-
for user_input, response in st.session_state["history"]:
|
97 |
-
st.markdown(f'<div class="chat-bubble user-bubble"><span class="emoji">π€</span>You: {user_input}</div>', unsafe_allow_html=True)
|
98 |
-
st.markdown(f'<div class="chat-bubble bot-bubble"><span class="emoji">π€</span>Bot: {response}</div>', unsafe_allow_html=True)
|
99 |
-
st.markdown('</div>', unsafe_allow_html=True)
|
|
|
1 |
import streamlit as st
|
2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
3 |
+
|
4 |
+
# Load the model and tokenizer
|
5 |
+
@st.cache_resource
|
6 |
+
def load_model_and_tokenizer():
|
7 |
+
model_name = "microsoft/DialoGPT-medium" # Replace with your chosen model
|
8 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
9 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
10 |
+
return tokenizer, model
|
11 |
+
|
12 |
+
tokenizer, model = load_model_and_tokenizer()
|
13 |
+
|
14 |
+
# Streamlit App
|
15 |
+
st.title("General Chatbot")
|
16 |
+
st.write("A chatbot powered by an open-source model from Hugging Face.")
|
17 |
+
|
18 |
+
# Initialize the conversation
|
19 |
+
if "conversation_history" not in st.session_state:
|
20 |
+
st.session_state["conversation_history"] = []
|
21 |
+
|
22 |
+
# Input box for user query
|
23 |
+
user_input = st.text_input("You:", placeholder="Ask me anything...", key="user_input")
|
24 |
+
|
25 |
+
if st.button("Send") and user_input:
|
26 |
+
# Append user input to history
|
27 |
+
st.session_state["conversation_history"].append({"role": "user", "content": user_input})
|
28 |
+
|
29 |
+
# Tokenize and generate response
|
30 |
+
input_ids = tokenizer.encode(user_input + tokenizer.eos_token, return_tensors="pt")
|
31 |
+
chat_history_ids = model.generate(input_ids, max_length=1000, pad_token_id=tokenizer.eos_token_id)
|
32 |
+
response = tokenizer.decode(chat_history_ids[:, input_ids.shape[-1]:][0], skip_special_tokens=True)
|
33 |
+
|
34 |
+
# Append model response to history
|
35 |
+
st.session_state["conversation_history"].append({"role": "assistant", "content": response})
|
36 |
+
|
37 |
+
# Display the conversation
|
38 |
+
for message in st.session_state["conversation_history"]:
|
39 |
+
if message["role"] == "user":
|
40 |
+
st.write(f"**You:** {message['content']}")
|
41 |
+
else:
|
42 |
+
st.write(f"**Bot:** {message['content']}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|