-
Notifications
You must be signed in to change notification settings - Fork 113
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
[Backport 2.x] feat: Setup assistant agent & workflow file. #1014
Conversation
* feat: enable setup Signed-off-by: SuZhou-Joe <[email protected]> * feat: using a external mock service to mock a dummy LLM Signed-off-by: SuZhou-Joe <[email protected]> * feat: use local dummy server Signed-off-by: SuZhou-Joe <[email protected]> * feat: add some basic test cases Signed-off-by: SuZhou-Joe <[email protected]> * feat: run with server Signed-off-by: SuZhou-Joe <[email protected]> * feat: use ml-commons api to setup test agent manually Signed-off-by: SuZhou-Joe <[email protected]> * feat: remove flow_framework.enabled config Signed-off-by: SuZhou-Joe <[email protected]> * feat: remove visualization as skills repo is not bundled in snapshot Signed-off-by: SuZhou-Joe <[email protected]> * feat: add flag config Signed-off-by: SuZhou-Joe <[email protected]> * feat: optimize stop command Signed-off-by: SuZhou-Joe <[email protected]> * feat: move setup steps to support/index.js Signed-off-by: SuZhou-Joe <[email protected]> --------- Signed-off-by: SuZhou-Joe <[email protected]> (cherry picked from commit cd1dd23)
e5d0d56
to
c984264
Compare
Signed-off-by: SuZhou-Joe <[email protected]>
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-main main
# Navigate to the new working tree
cd .worktrees/backport-main
# Create a new branch
git switch --create backport/backport-1014-to-main
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 620c868ad59af0d965749790966befc96cc1971e
# Push it to GitHub
git push --set-upstream origin backport/backport-1014-to-main
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-main Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-main main
# Navigate to the new working tree
cd .worktrees/backport-main
# Create a new branch
git switch --create backport/backport-1014-to-main
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 620c868ad59af0d965749790966befc96cc1971e
# Push it to GitHub
git push --set-upstream origin backport/backport-1014-to-main
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-main Then, create a pull request where the |
Backport cd1dd23 from #1002