-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Integrate CodeIntepreter #736
Merged
Merged
Conversation
This file contains 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
更新:修改execute_code 初始化,增加resume功能 See merge request agents/data_agents_opt!27
Add ablation experiments See merge request agents/data_agents_opt!28
minor update: move action, fix circular import, add entry parameters See merge request agents/data_agents_opt!29
garylin2099
had a problem deploying
to
unittest
February 4, 2024 02:23
— with
GitHub Actions
Failure
garylin2099
had a problem deploying
to
unittest
February 4, 2024 02:46
— with
GitHub Actions
Failure
garylin2099
had a problem deploying
to
unittest
February 4, 2024 05:11
— with
GitHub Actions
Failure
geekan
reviewed
Feb 4, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Don't write comments that don't make sense, if the subclass's methods are nothing special, it should probably use the parent's comments
- Notice that some logic has actually changed boundaries in the modification and need to provide a test result
…orator on get_choice_function_arguments.
reduce ml libs redundancy See merge request agents/data_agents_opt!76
garylin2099
had a problem deploying
to
unittest
February 4, 2024 15:42
— with
GitHub Actions
Failure
garylin2099
had a problem deploying
to
unittest
February 4, 2024 16:05
— with
GitHub Actions
Failure
|
garylin2099
had a problem deploying
to
unittest
February 4, 2024 16:20
— with
GitHub Actions
Failure
garylin2099
had a problem deploying
to
unittest
February 5, 2024 08:41
— with
GitHub Actions
Failure
geekan
approved these changes
Feb 5, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
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.
Features
Role
through_plan_and_act
functionCodeInterpreter(Role)
that could solve problems through coding. This role inherits the planning ability and can also use tools.MLEngineer(Role)
that tailored for machine learning and data analysisPlanner
and a data structurePlan
were the support for role's planning capability.Action
s reusable across roles, incluingWriteCodeByGenerate
,WriteCodeWithTools
,ExecuteCode
, etc. These enable a real-time code generation and display.Feature Docs
TODO
Result
TODO
This change is