File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2222
2323from llmstack .apps .app_session_utils import create_app_session
2424from llmstack .apps .handlers .app_processor_runner import AppProcessorRunner
25- from llmstack .apps .handlers .app_runner_factory import AppRunerFactory
25+ from llmstack .apps .handlers .app_runner_factory import AppRunnerFactory
2626from llmstack .apps .integration_configs import (
2727 DiscordIntegrationConfig ,
2828 SlackIntegrationConfig ,
@@ -943,15 +943,15 @@ def run_app_internal(
943943
944944 app_runner_class = None
945945 if platform == "discord" :
946- app_runner_class = AppRunerFactory .get_app_runner ("discord" )
946+ app_runner_class = AppRunnerFactory .get_app_runner ("discord" )
947947 elif platform == "slack" :
948- app_runner_class = AppRunerFactory .get_app_runner ("slack" )
948+ app_runner_class = AppRunnerFactory .get_app_runner ("slack" )
949949 elif platform == "twilio-sms" :
950- app_runner_class = AppRunerFactory .get_app_runner ("twilio-sms" )
950+ app_runner_class = AppRunnerFactory .get_app_runner ("twilio-sms" )
951951 elif platform == "twilio-voice" :
952- app_runner_class = AppRunerFactory .get_app_runner ("twilio-voice" )
952+ app_runner_class = AppRunnerFactory .get_app_runner ("twilio-voice" )
953953 else :
954- app_runner_class = AppRunerFactory .get_app_runner (app .type .slug )
954+ app_runner_class = AppRunnerFactory .get_app_runner (app .type .slug )
955955
956956 app_runner = app_runner_class (
957957 app = app ,
Original file line number Diff line number Diff line change 11from functools import cache
22
33
4- class AppRunerFactory :
4+ class AppRunnerFactory :
55 @staticmethod
66 @cache
77 def get_app_runner (app_type_slug ):
You can’t perform that action at this time.
0 commit comments