Code-Review-GPT-Gitlab icon indicating copy to clipboard operation
Code-Review-GPT-Gitlab copied to clipboard

🤖 GPT Code Review for Gitlab (针对于 Gitlab 的 LLM 辅助 Code Review 工具)项目详细文档 👇🏻

Results 24 Code-Review-GPT-Gitlab issues
Sort by recently updated
recently updated
newest added

麻烦支持钉钉禁用功能 当前 1.dingding的配置必须配置 2.配置错,日志会报错。 麻烦支持钉钉的可选开关。

will_fix

1、gitlab_integration/webhook_listener.py里面def handle_merge_request(self, gitlab_payload, reply):方法if判断加上reopen的判断 ``` def handle_merge_request(self, gitlab_payload, reply): """ 处理合并请求事件 """ if gitlab_payload.get("object_attributes").get("state") == "opened" and (gitlab_payload.get("object_attributes").get("merge_status") == "preparing"or gitlab_payload.get("object_attributes").get("merge_status") == "can_be_merged"): ``` 2、review_engine/handler/default_handler.py里面review_results要过滤null ``` def process_change(change): result =...

will_fix

你好,有个问题帮看一下。 我使用ollama, 配置如下: api_config = { "api_base": "http://127.0.0.1:11434/", "model": "deepseek-r1:14b", "provider": "ollama", } 然后启动python3 app.py会提示检查未通过: itellm.BadRequestError: Invalid Message passed in {'role': 'system', 'content': '你是一个有用的助手'} Model invocation cannot be used. 然后我删掉...

bug

https://arxiv.org/abs/2501.15134

enhancement