-
Notifications
You must be signed in to change notification settings - Fork 44.6k
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
Add CLI args for ai_name
, ai_role
, and ai_goals
#3250
Conversation
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly. |
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
1 similar comment
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #3250 +/- ##
==========================================
- Coverage 50.05% 50.04% -0.02%
==========================================
Files 116 116
Lines 4799 4826 +27
Branches 643 650 +7
==========================================
+ Hits 2402 2415 +13
- Misses 2218 2227 +9
- Partials 179 184 +5
☔ View full report in Codecov by Sentry. |
merge messed this up, I need to fix it |
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly. |
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
1 similar comment
This PR exceeds the recommended size of 200 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size |
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly. |
This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request. |
Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly. |
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!
…avitas#3250) * add capability to specify AI config at cmd line * Make `--ai-goal` multi-parameter * Fix argument forwarding in run.sh --------- Co-authored-by: Reinier van der Leer <[email protected]>
Background
#3079 - currently you have to either specify the ai_settings.yaml file or provide user input in order to set the ai name, roles, and goals. Ideally we can set these via command line and directly enter execution.
Changes
Added command line params for the above, and then passed them down to the configurator in a way that allows you to specify ANY of them (while prompting for the rest if necessary). Command line overrides will override any ai settings files if both are provided, by design.
Documentation
Updated comments and documented tests - TODO update main docs
Test Plan
Created new unit tests and manually ran a couple prompts
PR Quality Checklist