From 63f827852ba2d335fea0100865be3fbf3e842dc1 Mon Sep 17 00:00:00 2001 From: Richard Anthony Hein Date: Tue, 13 Aug 2024 21:20:14 +0000 Subject: [PATCH] fixed FUNCTIOn casing --- swarms/prompts/chat_prompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarms/prompts/chat_prompt.py b/swarms/prompts/chat_prompt.py index 4aca00d1..1163fb2a 100644 --- a/swarms/prompts/chat_prompt.py +++ b/swarms/prompts/chat_prompt.py @@ -29,7 +29,7 @@ class Role(Enum): HUMAN = "Human" AI = "AI" SYSTEM = "System" - FUNCTIOn = "Function" + FUNCTION = "Function" class HumanMessage(Message):