From eb5ed6408aa9d5543313ff3f3b45e10f5e6b0c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E8=83=9C?= Date: Sun, 31 Mar 2024 13:29:11 +0800 Subject: [PATCH] fix typo mistake --- examples/build_customized_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/build_customized_agent.py b/examples/build_customized_agent.py index cfe264b47..7dab4833d 100644 --- a/examples/build_customized_agent.py +++ b/examples/build_customized_agent.py @@ -17,7 +17,7 @@ from metagpt.schema import Message class SimpleWriteCode(Action): PROMPT_TEMPLATE: str = """ - Write a python function that can {instruction} and provide two runnnable test cases. + Write a python function that can {instruction} and provide two runnable test cases. Return ```python your_code_here ``` with NO other texts, your code: """