How to make edits to source code

Hello,

I am new to developing, Ive been seeing posts where people are actively editing in the source code of rasa, how do people access these files on their local machines? In my project folder I only see files such as configs, data, endpoints etc. Nothing resembling source code

Kind regards

Hello @LostButImproving,

The source code for Rasa can be found at GitHub - RasaHQ/rasa: šŸ’¬ Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants and you would follow typical flows of forking it, make your update and submit a PR back.

Let me know if you have follow up questions.

1 Like

So if I wanted to make changes to the way rasa works on my machine only, Iā€™d follow your advice?

Correct you would clone that down and could modify the code and do a pip install -e . from the directory to install it as a module.

1 Like

Thank you very much!

you are quite welcome