Conversation
add: new unit tests add: vscode formatter settings
fix: broken tests
add: improve README
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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_aiagentstests, updating the.vscode/settings.jsonfile for better code formatting, and refining thePlannedTeamworkflow to support reiterating a plan after feedback evaluation.Enhancements to
vanilla_aiagentstests:vanilla_aiagents/tests/test_llm.py: AddedLLMConstraintsand 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 forConversationand improved formatting and readability by adding line breaks and reformatting the code. Introduced new tests forfeedbackandplanto enhance the testing coverage. [1] [2] [3] [4] [5]Code formatting improvements:
.vscode/settings.json: Configured the default formatter toms-python.black-formatterand enabledformatOnSavefor Python files. Added settings to organize and remove unused imports on save.Refinements to
PlannedTeamworkflow:notebooks/planned_team.ipynb: Removed thestop_callbackparameter from thePlannedTeaminitialization to streamline the workflow setup.Does this introduce a breaking change?
PlannedTeamno longer accepts astop_callbackparam - which was not very applicable. Instead a newrepeat_untilcallback allows to reiterate and generate new plans enabling feedback-loop graphs.