gitea/modules/structs/ai.go
Lieslot de827e114d
PR AI 정적 분석 기능 API 구현 (#24)
* feat: PR 리뷰 ai 정적 분석 기능 추가

* fix: CreateAiPullComment의 반환값을 *AiPullComment로 변경

* fix: review_test 모킹 타입 오류 수정

* fix: ai interface server config 파일 설정 추가 및 ai interface server 요청 방식 변경
2024-08-02 10:41:38 +09:00

14 lines
357 B
Go

package structs
type CreateAiPullCommentForm struct {
Branch string `json:"branch"`
FileContents *[]PathContentMap `json:"file_contents"`
RepoID string `json:"repo_id"`
PullID string `json:"pull_id"`
}
type PathContentMap struct {
TreePath string `json:"file_path"`
Content string `json:"code"`
}