Skip to content

Commit 0ef67a7

Browse files
committed
to pass lint
1 parent 640e710 commit 0ef67a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/agent_prompts/main_agent_prompt_deepseek.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class MainAgentPromptBoxedDeepSeek(BaseAgentPrompt):
77
"""
8-
Adapted from MainAgentPromptBoxedAnswer. Since the tool-use is DeepSeek format, we remove the <use_mcp_tool> tags and its corresponding format instructions.
8+
Adapted from MainAgentPromptBoxedAnswer. Since the tool-use is DeepSeek format, we remove the <use_mcp_tool> tags and its corresponding format instructions.
99
"""
1010

1111
def __init__(self, *args, **kwargs):

config/agent_prompts/sub_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,4 +377,4 @@ def generate_system_prompt_with_mcp_tools(
377377
378378
"""
379379

380-
return prompt
380+
return prompt

src/llm/providers/deepseek_openrouter_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async def _create_message(
9797
processed_messages = messages_copy
9898
else:
9999
processed_messages = self._apply_cache_control(messages_copy)
100-
100+
101101
# For deepseek, we need to explicitly specify the tool list and add it to the messages
102102
tool_list = await self.convert_tool_definition_to_tool_call(tools_definitions)
103103

0 commit comments

Comments
 (0)