You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/swarms/prompts/__init__.py

30 lines
1.0 KiB

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.prompt import Prompt
from swarms.prompts.autonomous_agent_prompt import (
AUTONOMOUS_AGENT_SYSTEM_PROMPT,
get_autonomous_agent_prompt,
get_autonomous_agent_prompt_with_context,
)
__all__ = [
"CODE_INTERPRETER",
"FINANCE_AGENT_PROMPT",
"GROWTH_AGENT_PROMPT",
"LEGAL_AGENT_PROMPT",
"OPERATIONS_AGENT_PROMPT",
"PRODUCT_AGENT_PROMPT",
"DOCUMENTATION_WRITER_SOP",
"Prompt",
"AUTONOMOUS_AGENT_SYSTEM_PROMPT",
"get_autonomous_agent_prompt",
"get_autonomous_agent_prompt_with_context",
]