diff --git a/README.md b/README.md index e084c01..64fd58f 100644 --- a/README.md +++ b/README.md @@ -131,3 +131,13 @@ Feel free to log an issue on our [GitHub issues page](https://github.com/natzar/ - [How to contribute](#how-to-contribute) - [License](#license) + +# Assistant Role Split + +The AI Developer will now have two distinct roles: + +1. **Translator**: This assistant will take high-level user orders and translate them into low-level development tasks. + +2. **Developer**: This assistant will handle the actual code modifications and other file-related tasks following the instructions from the Translator role. + +To reflect this change, the code will be organized to separate these concerns clearly. diff --git a/ai_developer/developer/__init__.py b/ai_developer/developer/__init__.py new file mode 100755 index 0000000..f4d2d18 --- /dev/null +++ b/ai_developer/developer/__init__.py @@ -0,0 +1,5 @@ +""" +Developer Assistant Module + +This module is responsible for making code modifications and handling file-related tasks based on the Translator's instructions. +""" diff --git a/ai_developer/translator/__init__.py b/ai_developer/translator/__init__.py new file mode 100755 index 0000000..09b0ca6 --- /dev/null +++ b/ai_developer/translator/__init__.py @@ -0,0 +1,5 @@ +""" +Translator Assistant Module + +This module is responsible for translating high-level user orders into low-level development tasks. +"""