improve ask_line tool(add conversation history context)

This commit is contained in:
benedict.lee
2025-04-09 23:45:04 +09:00
parent edaab4b6b1
commit b53d2773a9
5 changed files with 218 additions and 0 deletions

View File

@ -285,6 +285,15 @@ class GitProvider(ABC):
def get_comment_url(self, comment) -> str:
return ""
def get_review_comment_by_id(self, comment_id: int):
pass
def get_review_id_by_comment_id(self, comment_id: int):
pass
def get_review_thread_comments(self, comment_id: int):
pass
#### labels operations ####
@abstractmethod