From 2f6c398ba1676211eab6d92265ffc62a2868abd2 Mon Sep 17 00:00:00 2001 From: AI Developer Date: Fri, 29 Dec 2023 11:24:05 +0000 Subject: [PATCH] Split AI Developer into Translator and Developer components --- README.md | 10 ++++++++++ ai_developer/developer/__init__.py | 5 +++++ ai_developer/translator/__init__.py | 5 +++++ 3 files changed, 20 insertions(+) create mode 100755 ai_developer/developer/__init__.py create mode 100755 ai_developer/translator/__init__.py 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. +"""