diff --git a/scripts/mma_exec.py b/scripts/mma_exec.py index 2fedb66..db672a5 100644 --- a/scripts/mma_exec.py +++ b/scripts/mma_exec.py @@ -22,7 +22,7 @@ def get_role_documents(role: str) -> list[str]: def execute_agent(role: str, prompt: str, docs: list[str]) -> str: model = get_model_for_role(role) - command_text = f"Activate the mma-{role} skill. {prompt}" + command_text = f"Use the mma-{role} skill. {prompt}" for doc in docs: command_text += f" @{doc}"