From aca50086c3e51c153cf24a777bd9af53030a8ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=A3=92=E6=A3=92?= Date: Sat, 18 Nov 2023 16:59:14 +0800 Subject: [PATCH] chore: add comment for general_function_schema. --- metagpt/utils/function_schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/metagpt/utils/function_schema.py b/metagpt/utils/function_schema.py index 9d7cef927..f9b84fc60 100644 --- a/metagpt/utils/function_schema.py +++ b/metagpt/utils/function_schema.py @@ -1,4 +1,5 @@ # function in tools, https://platform.openai.com/docs/api-reference/chat/create#chat-create-tools +# Reference: https://github.com/KillianLucas/open-interpreter/blob/v0.1.14/interpreter/llm/setup_openai_coding_llm.py general_function_schema = { "name": "execute", "description": "Executes code on the user's machine, **in the users local environment**, and returns the output",