Features/feedback planner #2
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This pull request includes various changes to improve the formatting, functionality, and structure of the codebase. The most important changes involve enhancing the
vanilla_aiagents
tests, updating the.vscode/settings.json
file for better code formatting, and refining thePlannedTeam
workflow to support reiterating a plan after feedback evaluation.Enhancements to
vanilla_aiagents
tests:vanilla_aiagents/tests/test_llm.py
: AddedLLMConstraints
and a new test for constraints to ensure the constraints are working correctly. Improved formatting and readability by adding line breaks and reformatting the code. [1] [2]vanilla_aiagents/tests/test_planned_team.py
: Added imports forConversation
and improved formatting and readability by adding line breaks and reformatting the code. Introduced new tests forfeedback
andplan
to enhance the testing coverage. [1] [2] [3] [4] [5]Code formatting improvements:
.vscode/settings.json
: Configured the default formatter toms-python.black-formatter
and enabledformatOnSave
for Python files. Added settings to organize and remove unused imports on save.Refinements to
PlannedTeam
workflow:notebooks/planned_team.ipynb
: Removed thestop_callback
parameter from thePlannedTeam
initialization to streamline the workflow setup.Does this introduce a breaking change?
PlannedTeam
no longer accepts astop_callback
param - which was not very applicable. Instead a newrepeat_until
callback allows to reiterate and generate new plans enabling feedback-loop graphs.