-
Notifications
You must be signed in to change notification settings - Fork 10
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
RLHF #44
base: development
Are you sure you want to change the base?
RLHF #44
Conversation
Unused files (1)
Unresolved imports (1)
Unused exports (2)
Unused types (1)
|
! shiv810 you were previously unassigned from this task. You cannot be reassigned. |
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.
/ask sum up the changes made in this pr?
@@ -1,7 +1,7 @@ | |||
{ | |||
"name": "command-ask", | |||
"description": "A highly context aware organization integrated chatbot", | |||
"ubiquity:listeners": ["issue_comment.created"], | |||
"ubiquity:listeners": ["issue_comment.created", "issue_comment.edited"], |
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.
/ask explain the changes made by this PR?
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.
This pull request (#44) introduces a modification to the manifest.json
file of the command-ask
repository. Specifically, it updates the ubiquity:listeners
array by adding the "issue_comment.edited"
event.
Changes Made:
- Before:
"ubiquity:listeners": ["issue_comment.created"],
- After:
"ubiquity:listeners": ["issue_comment.created", "issue_comment.edited"],
Impact of the Change:
By including the "issue_comment.edited"
event, the bot is now configured to listen and respond not only to the creation of new issue comments but also to any edits made to existing comments. This enhancement allows for more dynamic interactions, ensuring that the bot remains responsive to updates and modifications within issue discussions.
Pending Tasks:
- Reaction Weights: This feature remains unchecked and is slated for future implementation.
This update ensures that the command-ask
bot remains up-to-date with the latest interactions within GitHub issues, enhancing its ability to provide timely and relevant responses based on both new and edited comments.
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.
this comment should be ignored and no output should be generated.
Resolves #18