From efd17593ce9e947f405b109863f2d3875047e279 Mon Sep 17 00:00:00 2001 From: FangYin Cheng Date: Fri, 18 Aug 2023 17:18:01 +0800 Subject: [PATCH] fix: Fix alpaca prompt error --- pilot/model/conversation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/model/conversation.py b/pilot/model/conversation.py index 355bdda19..8508881b7 100644 --- a/pilot/model/conversation.py +++ b/pilot/model/conversation.py @@ -339,7 +339,7 @@ register_conv_template( register_conv_template( Conversation( name="alpaca", - system_message="Below is an instruction that describes a task. Write a response that appropriately completes the request.", + system="Below is an instruction that describes a task. Write a response that appropriately completes the request.", roles=("### Instruction", "### Response"), messages=(), offset=0,