-
Notifications
You must be signed in to change notification settings - Fork 590
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
Tr/claude3 #746
Tr/claude3 #746
Conversation
PR Code Suggestions
✨ Improve tool usage guide:Overview:
With a configuration file, use the following template:
See the improve usage page for a more comprehensive guide on using this tool. |
Preparing review... |
PR Review(Review updated until commit 26fb2a4)
Code feedback:
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
/review |
Persistent review updated to latest commit 26fb2a4 |
/help |
PR Agent Walkthrough🤖 Welcome to the PR Agent, an AI-powered tool for automated pull request analysis, feedback, suggestions and more. Here is a list of tools you can use to interact with the PR Agent:
(1) Note that each tool be triggered automatically when a new PR is opened, or called manually by commenting on a PR. (2) Tools marked with [*] require additional parameters to be passed. For example, to invoke the |
PR Analysis
✨ Usage guide:Using static code analysis capabilities, the
Language that are currently supported: Python, Java, C++, JavaScript, TypeScript. |
Changelog updates: 2024-03-11Added
Changed
|
Generated docstring for '_perform_commands_bitbucket'
Component signature: async def _perform_commands_bitbucket(commands_conf: str, agent: PRAgent, api_url: str, log_context: dict): Docstring: """
Perform commands specified in the configuration for Bitbucket.
Args:
commands_conf (str): The name of the commands configuration.
agent (PRAgent): An instance of the PRAgent class.
api_url (str): The URL of the Bitbucket API.
log_context (dict): A dictionary containing contextual information for logging.
Raises:
Exception: If there is an error while performing a command.
""" |
🔍 Finding similar code for '_perform_commands_bitbucket'_perform_commands_bitbucket (function) [+15/-0] Component signature: async def _perform_commands_bitbucket(commands_conf: str, agent: PRAgent, api_url: str, log_context: dict):
|
Generated code suggestions for 'inner'
Component signature: async def inner():
|
/review |
Persistent review updated to latest commit 26fb2a4 |
/improve |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
Type
enhancement, bug_fix
Description
anthropic/claude-3-opus-20240229
model in the AI model configuration.litellm_ai_handler.py
by removingTryAgain
exception usage.pr_commands
feature for Bitbucket app.configuration.toml
to demonstrate the use ofpr_commands
for Bitbucket app.litellm
andopenai
dependencies to newer versions.Changes walkthrough
__init__.py
Add Support for Anthropic Claude-3 Model
pr_agent/algo/init.py
anthropic/claude-3-opus-20240229
model with atoken limit of 100000.
bitbucket_app.py
Implement Command Execution Functionality for Bitbucket App
pr_agent/servers/bitbucket_app.py
update_settings_from_args
function call to update settings basedon command arguments.
_perform_commands_bitbucket
to execute configured commandsfor Bitbucket PRs.
on
pr_commands
configuration.litellm_ai_handler.py
Refactor Error Handling and Remove Detailed Docstring
pr_agent/algo/ai_handlers/litellm_ai_handler.py
TryAgain
fromopenai.error
.TryAgain
exception from the retry decorator and theexception handling.
chat_completion
method.TryAgain
toAPIError
when theresponse is None or empty.
Usage.md
Update Documentation for Bitbucket App Configuration and Anthropic
Models Support
Usage.md
pr_commands
configuration forBitbucket app.
configuration.toml
Update Configuration for Bitbucket App Command Execution
pr_agent/settings/configuration.toml
pr_commands
configuration for Bitbucket app.requirements.txt
Upgrade Dependencies `litellm` and `openai`
requirements.txt
litellm
to version 1.29.1.openai
to version 1.13.3.