JustKiddo commited on
Commit
9e0b73b
·
verified ·
1 Parent(s): 47ed12b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -110,7 +110,7 @@ def display_chat_history():
110
 
111
  def main():
112
  st.set_page_config(
113
- page_title="AI Chatbot Tiếng Việt",
114
  page_icon="🤖",
115
  layout="wide"
116
  )
@@ -122,8 +122,8 @@ def main():
122
  model, tokenizer = load_model()
123
 
124
  # Chat interface
125
- st.title("AI Chatbot Tiếng Việt 🤖")
126
- st.markdown("Xin chào! Tôi là trợ lý AI có thể trò chuyện bằng tiếng Việt. Hãy hỏi tôi bất cứ điều gì!")
127
 
128
  # Chat history container
129
  chat_container = st.container()
@@ -158,7 +158,6 @@ def main():
158
  bot_response = generate_response(prompt, model, tokenizer)
159
 
160
  # Add bot response
161
- time.sleep(0.5) # Brief delay for natural feeling
162
  st.session_state.messages.append({"role": "assistant", "content": bot_response})
163
  st.session_state.thinking = False
164
 
 
110
 
111
  def main():
112
  st.set_page_config(
113
+ page_title="IOGPT",
114
  page_icon="🤖",
115
  layout="wide"
116
  )
 
122
  model, tokenizer = load_model()
123
 
124
  # Chat interface
125
+ st.title("IOGPT 🤖")
126
+ st.markdown("Xin chào! Tôi là trợ lý IOGPT. Hãy hỏi tôi bất cứ điều gì!")
127
 
128
  # Chat history container
129
  chat_container = st.container()
 
158
  bot_response = generate_response(prompt, model, tokenizer)
159
 
160
  # Add bot response
 
161
  st.session_state.messages.append({"role": "assistant", "content": bot_response})
162
  st.session_state.thinking = False
163