Skip to content
代码片段 群组 项目
未验证 提交 c301fa35 编辑于 作者: Gosia Ksionek's avatar Gosia Ksionek 提交者: GitLab
浏览文件

Merge branch 'nd/fix-notes-summary-output' into 'master'

No related branches found
No related tags found
无相关合并请求
...@@ -30,16 +30,16 @@ class Executor < Tool ...@@ -30,16 +30,16 @@ class Executor < Tool
Utils::Prompt.as_system( Utils::Prompt.as_system(
<<~PROMPT <<~PROMPT
You are an assistant that extracts the most important information from the comments in maximum 10 bullet points. You are an assistant that extracts the most important information from the comments in maximum 10 bullet points.
Comments are between two identical sets of 3-digit numbers surrounded by < > sign. Each comment is wrapped in a <comment> tag.
<%<num>s>
%<notes_content>s %<notes_content>s
<%<num>s>
Desired markdown format: Desired markdown format:
**<summary_title>** **<summary_title>**
<bullet_points> - <bullet_point>
""" - <bullet_point>
- <bullet_point>
- ...
Focus on extracting information related to one another and that are the majority of the content. Focus on extracting information related to one another and that are the majority of the content.
Ignore phrases that are not connected to others. Ignore phrases that are not connected to others.
...@@ -57,7 +57,6 @@ def perform(&block) ...@@ -57,7 +57,6 @@ def perform(&block)
content = if notes.exists? content = if notes.exists?
notes_content = notes_to_summarize(notes) # rubocop: disable CodeReuse/ActiveRecord notes_content = notes_to_summarize(notes) # rubocop: disable CodeReuse/ActiveRecord
options[:notes_content] = notes_content options[:notes_content] = notes_content
options[:num] = Random.rand(100..999)
if options[:raw_ai_response] if options[:raw_ai_response]
request(&block) request(&block)
...@@ -87,7 +86,7 @@ def notes_to_summarize(notes) ...@@ -87,7 +86,7 @@ def notes_to_summarize(notes)
break notes_content if notes_content.size + note[1].size >= input_content_limit break notes_content if notes_content.size + note[1].size >= input_content_limit
notes_content << note[1] notes_content << (format("<comment>%<note>s</comment>", note: note[1]))
end end
end end
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
RSpec.describe Gitlab::Llm::Chain::Tools::SummarizeComments::Prompts::Anthropic, feature_category: :duo_chat do RSpec.describe Gitlab::Llm::Chain::Tools::SummarizeComments::Prompts::Anthropic, feature_category: :duo_chat do
describe '.prompt' do describe '.prompt' do
it 'returns prompt' do it 'returns prompt' do
prompt = described_class.prompt({ notes_content: 'foo', num: 123 })[:prompt] prompt = described_class.prompt({ notes_content: '<comment>foo</comment>' })[:prompt]
expect(prompt).to include('Human:') expect(prompt).to include('Human:')
expect(prompt).to include('Assistant:') expect(prompt).to include('Assistant:')
...@@ -13,16 +13,16 @@ ...@@ -13,16 +13,16 @@
expect(prompt).to include( expect(prompt).to include(
<<~PROMPT <<~PROMPT
You are an assistant that extracts the most important information from the comments in maximum 10 bullet points. You are an assistant that extracts the most important information from the comments in maximum 10 bullet points.
Comments are between two identical sets of 3-digit numbers surrounded by < > sign. Each comment is wrapped in a <comment> tag.
<123> <comment>foo</comment>
foo
<123>
Desired markdown format: Desired markdown format:
**<summary_title>** **<summary_title>**
<bullet_points> - <bullet_point>
""" - <bullet_point>
- <bullet_point>
- ...
Focus on extracting information related to one another and that are the majority of the content. Focus on extracting information related to one another and that are the majority of the content.
Ignore phrases that are not connected to others. Ignore phrases that are not connected to others.
......
...@@ -5,21 +5,21 @@ ...@@ -5,21 +5,21 @@
RSpec.describe Gitlab::Llm::Chain::Tools::SummarizeComments::Prompts::VertexAi, feature_category: :duo_chat do RSpec.describe Gitlab::Llm::Chain::Tools::SummarizeComments::Prompts::VertexAi, feature_category: :duo_chat do
describe '.prompt' do describe '.prompt' do
it 'returns prompt' do it 'returns prompt' do
prompt = described_class.prompt({ notes_content: 'foo', num: 123 })[:prompt] prompt = described_class.prompt({ notes_content: '<comment>foo</comment>' })[:prompt]
expect(prompt).to include( expect(prompt).to include(
<<~PROMPT <<~PROMPT
You are an assistant that extracts the most important information from the comments in maximum 10 bullet points. You are an assistant that extracts the most important information from the comments in maximum 10 bullet points.
Comments are between two identical sets of 3-digit numbers surrounded by < > sign. Each comment is wrapped in a <comment> tag.
<123> <comment>foo</comment>
foo
<123>
Desired markdown format: Desired markdown format:
**<summary_title>** **<summary_title>**
<bullet_points> - <bullet_point>
""" - <bullet_point>
- <bullet_point>
- ...
Focus on extracting information related to one another and that are the majority of the content. Focus on extracting information related to one another and that are the majority of the content.
Ignore phrases that are not connected to others. Ignore phrases that are not connected to others.
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册