rexthecoder commited on
Commit
3576d20
·
1 Parent(s): ea04f09

chore: added new welcome message

Browse files
Files changed (2) hide show
  1. main.py +1 -1
  2. src/api.py +6 -1
main.py CHANGED
@@ -43,7 +43,7 @@ class LoggingDisabled:
43
 
44
  def main():
45
  app = Application.builder().token(
46
- '6207542226:AAF7QGjQ1QBClmpsANrVFN_iUl3orzEA030',).build()
47
 
48
  run_agent(
49
  agent=GirlfriendGPT(
 
43
 
44
  def main():
45
  app = Application.builder().token(
46
+ '5998527257:AAEqyphTlO2dJUhcofD8EMB82JmhbHG9qFA',).build()
47
 
48
  run_agent(
49
  agent=GirlfriendGPT(
src/api.py CHANGED
@@ -20,7 +20,12 @@ VERBOSE = True
20
 
21
 
22
  async def hello(update: Update, context: CallbackContext) -> None:
23
- intro_text = f"🤖 Greetings human!🤗\nI'm a bot built by Rexthecoder\n🦾 I can do a lot of things"
 
 
 
 
 
24
  await update.message.reply_text(intro_text)
25
 
26
  class GirlfriendGPT(LangChainAgentBot, ):
 
20
 
21
 
22
  async def hello(update: Update, context: CallbackContext) -> None:
23
+ intro_text = f"""
24
+ 🤖 Welcome to BearBuddy, created by rexthecoder! I'm your extraordinary AI companion capable of accomplishing the impossible!
25
+ 💬 Feel free to ask me about anything, whether it's mouthwatering 🍔 recipes, exciting ✈️ travel destinations, effective 🏋️‍♀️ fitness routines, strategic 📱 marketing tips, or any other topic you can think of.
26
+ Don't worry about the language barrier—I'm here to assist you in any language!
27
+ How can I assist you today?
28
+ """
29
  await update.message.reply_text(intro_text)
30
 
31
  class GirlfriendGPT(LangChainAgentBot, ):