From fdb94450d65f531b77b5a363dcc8d7bb0692c20e Mon Sep 17 00:00:00 2001 From: Jerry Liu Date: Wed, 27 Dec 2023 09:27:15 -0800 Subject: [PATCH] cr --- crewai/prompts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crewai/prompts.py b/crewai/prompts.py index 4e9d2d83e..4fa8a33e3 100644 --- a/crewai/prompts.py +++ b/crewai/prompts.py @@ -55,7 +55,7 @@ class Prompts(BaseModel): VOTING_SLICE: ClassVar[str] = dedent("""\ You are working on a crew with your co-workers and need to decide who will execute the task. - These are tyour format instructions: + These are your format instructions: {format_instructions} These are your co-workers and their roles: @@ -69,7 +69,7 @@ class Prompts(BaseModel): TASK_EXECUTION_PROMPT: ClassVar[str] = PromptTemplate.from_template( ROLE_PLAYING_SLICE + TOOLS_SLICE + TASK_SLICE ) - + CONSENSUNS_VOTING_PROMPT: ClassVar[str] = PromptTemplate.from_template( ROLE_PLAYING_SLICE + VOTING_SLICE + TASK_SLICE - ) \ No newline at end of file + )