in get.python.agent.handlers.ts, we pass the contextPath of the bot project using NodeJS process.cwd(). on Windows, this returns a path like C:\\Users\\ASUS\\my-new-bot and when this is used in the Python script it does not compile i.e. sys.path.append("C:\\Users\\ASUS\\my-new-bot"). ideally we can use Python's path.cwd to get a suitable format
in
get.python.agent.handlers.ts
, we pass the contextPath of the bot project using NodeJS process.cwd(). on Windows, this returns a path likeC:\\Users\\ASUS\\my-new-bot
and when this is used in the Python script it does not compile i.e.sys.path.append("C:\\Users\\ASUS\\my-new-bot")
. ideally we can use Python's path.cwd to get a suitable format