Skip to content
代码片段 群组 项目
提交 f6a12ad5 编辑于 作者: mo khan's avatar mo khan 提交者: Mehmet Emin INAC
浏览文件

Apply minor tweaks for the Explain Vulnerability API

上级 01a1990e
No related branches found
No related tags found
无相关合并请求
......@@ -230,7 +230,8 @@ def latest_state_transition
def send_to_ai?
::Feature.enabled?(:explain_vulnerability, project) &&
finding&.ai_explainable?
finding.present? &&
!secret_detection?
end
private
......
......@@ -410,10 +410,6 @@ def last_finding_pipeline
finding_pipelines.last&.pipeline
end
def ai_explainable?
file.present? && location["start_line"].present?
end
protected
def primary_identifier_fingerprint
......
......@@ -13,7 +13,7 @@ def initialize(vulnerability)
def options
{
max_tokens: ::Llm::ExplainCodeService::MAX_RESPONSE_TOKENS
max_tokens: 3_000
}
end
......
......@@ -954,6 +954,12 @@
it { expect(vulnerability).to be_send_to_ai }
end
context 'when the vulnerability is for a Secret Detection' do
let_it_be(:vulnerability) { create(:vulnerability, :secret_detection, :with_finding) }
it { expect(vulnerability).not_to be_send_to_ai }
end
context 'when the vulnerability does not include a file' do
let_it_be(:vulnerability) { create(:vulnerability, :with_finding) }
......@@ -961,7 +967,7 @@
vulnerability.finding.location.delete('file')
end
it { expect(vulnerability).not_to be_send_to_ai }
it { expect(vulnerability).to be_send_to_ai }
end
context 'when the vulnerability does not include a start line' do
......@@ -971,7 +977,7 @@
vulnerability.finding.location.delete('start_line')
end
it { expect(vulnerability).not_to be_send_to_ai }
it { expect(vulnerability).to be_send_to_ai }
end
context 'when the vulnerability does not include a finding' do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册