We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ffd1dc commit a659370Copy full SHA for a659370
src/codegate/pipeline/codegate_context_retriever/codegate.py
@@ -140,8 +140,10 @@ async def process(
140
task_start, task_content, task_end, rest_of_message = match.groups()
141
142
# Embed the context into the task block
143
- updated_task_content = f"{task_start}Context: {context_str}\n" + \
144
- f"Query: {task_content.strip()}</details>{task_end}"
+ updated_task_content = (
+ f"{task_start}Context: {context_str}\n"
145
+ + f"Query: {task_content.strip()}</details>{task_end}"
146
+ )
147
148
# Combine the updated task block with the rest of the message
149
context_msg = updated_task_content + rest_of_message
0 commit comments