rexthecoder commited on
Commit
5bfc11b
·
1 Parent(s): c13c173

chore: fix

Browse files
Files changed (1) hide show
  1. main.py +1 -7
main.py CHANGED
@@ -10,6 +10,7 @@ from telegram.ext import (
10
  CommandHandler,
11
  CallbackContext,
12
  Application,
 
13
  ContextTypes,
14
  )
15
  from api import GirlfriendGPT
@@ -35,12 +36,6 @@ logger = logging.getLogger(__name__)
35
  # print(message.text, end="\n\n")
36
 
37
 
38
- def shutdown(updater: Update):
39
- updater.stop()
40
- updater.is_idle = False
41
-
42
- def stop(update: Update, context: CallbackContext):
43
- threading.Thread(target=shutdown(updater=update)).start()
44
 
45
  async def hello(update: Update, context: CallbackContext) -> None:
46
  intro_text = f"🤖 Greetings human!🤗\nI'm a bot built by Rexthecoder\n🦾 I can do a lot of things"
@@ -84,7 +79,6 @@ def run_agent(agent: GirlfriendGPT, as_api: bool = False) -> None:
84
  # For Debugging
85
  summary_handler = agent.conversation_summary_handler()
86
  agent.application.add_handler(summary_handler)
87
- agent.application.add_handler(CommandHandler('stop', stop))
88
  agent.application.add_handler(CommandHandler('start', hello))
89
  # agent.application.add_handler(CommandHandler('summary', agent.conversation_summary))
90
  # agent.application.add_handler(MessageHandler(
 
10
  CommandHandler,
11
  CallbackContext,
12
  Application,
13
+ Updater,
14
  ContextTypes,
15
  )
16
  from api import GirlfriendGPT
 
36
  # print(message.text, end="\n\n")
37
 
38
 
 
 
 
 
 
 
39
 
40
  async def hello(update: Update, context: CallbackContext) -> None:
41
  intro_text = f"🤖 Greetings human!🤗\nI'm a bot built by Rexthecoder\n🦾 I can do a lot of things"
 
79
  # For Debugging
80
  summary_handler = agent.conversation_summary_handler()
81
  agent.application.add_handler(summary_handler)
 
82
  agent.application.add_handler(CommandHandler('start', hello))
83
  # agent.application.add_handler(CommandHandler('summary', agent.conversation_summary))
84
  # agent.application.add_handler(MessageHandler(