sabahat-shakeel commited on
Commit
c68c489
Β·
verified Β·
1 Parent(s): 2f25d0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +84 -39
app.py CHANGED
@@ -40,44 +40,89 @@
40
  # if __name__ == "__main__":
41
  # main()
42
  import streamlit as st
43
- from transformers import GPT2LMHeadModel, GPT2Tokenizer
44
-
45
- # Load the DialoGPT model and tokenizer
46
- @st.cache_resource
47
- def load_model():
48
- model_name = "microsoft/DialoGPT-medium"
49
- tokenizer = GPT2Tokenizer.from_pretrained(model_name)
50
- model = GPT2LMHeadModel.from_pretrained(model_name)
51
- return model, tokenizer
52
-
53
- # Function to generate a response from DialoGPT
54
- def generate_response(input_text, model, tokenizer):
55
- inputs = tokenizer.encode(input_text + tokenizer.eos_token, return_tensors="pt")
56
- outputs = model.generate(inputs, max_length=150, pad_token_id=tokenizer.eos_token_id, do_sample=True, top_p=0.9, top_k=50)
57
- response = tokenizer.decode(outputs[:, inputs.shape[-1]:][0], skip_special_tokens=True)
58
- return response
59
-
60
- # Streamlit UI setup
61
- def main():
62
- st.title("DialoGPT Chatbot")
63
-
64
- # Chat history
65
- if 'history' not in st.session_state:
66
- st.session_state['history'] = []
67
-
68
- user_input = st.text_input("You:", "")
69
-
70
- # Generate and display response
71
- if user_input:
72
- model, tokenizer = load_model()
73
- response = generate_response(user_input, model, tokenizer)
74
- st.session_state['history'].append({"user": user_input, "bot": response})
75
-
76
- # Display chat history
77
- for chat in st.session_state['history']:
78
- st.write(f"You: {chat['user']}")
79
- st.write(f"Bot: {chat['bot']}")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
 
81
- if __name__ == "__main__":
82
- main()
 
 
 
 
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