Skip to content

Commit c79d8ac

Browse files
committed
upd: rename openai -> deepseek.
1 parent 81e2591 commit c79d8ac

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

config/agent_llm_deepseek_openrouter.yaml

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

66

77
main_agent:
8-
prompt_class: MainAgentPromptBoxedOpenAI
8+
prompt_class: MainAgentPromptBoxedDeepSeek
99
llm:
1010
provider_class: "DeepSeekOpenRouterClient"
1111
model_name: "deepseek/deepseek-chat-v3.1" # Available DeepSeek models via OpenRouter

config/agent_prompts/main_agent_prompt_openai.py renamed to config/agent_prompts/main_agent_prompt_deepseek.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
from typing import Any
44

55

6-
class MainAgentPromptBoxedOpenAI(BaseAgentPrompt):
6+
class MainAgentPromptBoxedDeepSeek(BaseAgentPrompt):
77
"""
8-
Adapted from MainAgentPromptBoxedAnswer. Since the tool-use is OpenAI 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
@@ -247,7 +247,7 @@ def expose_agent_as_tool(self, subagent_name: str) -> dict:
247247
return tool_definition
248248

249249

250-
class SubAgentWorkerPromptOpenAI(SubAgentWorkerPrompt):
250+
class SubAgentWorkerPromptDeepSeek(SubAgentWorkerPrompt):
251251
def __init__(self, *args, **kwargs):
252252
super().__init__(*args, **kwargs)
253253
self.is_main_agent = False

0 commit comments

Comments
 (0)