From 552f5cce2ffcce8c5f9421667e5e348f3dc30a86 Mon Sep 17 00:00:00 2001 From: Pavan Kumar <66913595+ascender1729@users.noreply.github.com> Date: Sun, 20 Apr 2025 09:38:41 +0000 Subject: [PATCH] fix(prompts): resolve MATH_AGENT_PROMPT import by updating to source version --- swarms/prompts/__init__.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/swarms/prompts/__init__.py b/swarms/prompts/__init__.py index e73a118f..ad42d11a 100644 --- a/swarms/prompts/__init__.py +++ b/swarms/prompts/__init__.py @@ -1,21 +1,22 @@ + from swarms.prompts.code_interpreter import CODE_INTERPRETER from swarms.prompts.documentation import DOCUMENTATION_WRITER_SOP from swarms.prompts.finance_agent_prompt import FINANCE_AGENT_PROMPT from swarms.prompts.growth_agent_prompt import GROWTH_AGENT_PROMPT from swarms.prompts.legal_agent_prompt import LEGAL_AGENT_PROMPT -from swarms.prompts.operations_agent_prompt import ( - OPERATIONS_AGENT_PROMPT, -) -from swarms.prompts.product_agent_prompt import PRODUCT_AGENT_PROMPT +from swarms.prompts.operations_agent_prompt import OPERATIONS_AGENT_PROMPT +from swarms.prompts.product_agent_prompt import PRODUCT_AGENT_PROMPT from swarms.prompts.prompt import Prompt +from swarms.prompts.agent_prompts import MATH_AGENT_PROMPT __all__ = [ "CODE_INTERPRETER", - "FINANCE_AGENT_PROMPT", + "FINANCE_AGENT_PROMPT", "GROWTH_AGENT_PROMPT", "LEGAL_AGENT_PROMPT", "OPERATIONS_AGENT_PROMPT", "PRODUCT_AGENT_PROMPT", "DOCUMENTATION_WRITER_SOP", "Prompt", + "MATH_AGENT_PROMPT" ]