Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split AI Developer into Translator and Developer components #81

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
5 changes: 5 additions & 0 deletions ai_developer/developer/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
"""
5 changes: 5 additions & 0 deletions ai_developer/translator/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""
Translator Assistant Module

This module is responsible for translating high-level user orders into low-level development tasks.
"""