From abdc7f447ce58d570af512874c4e32259bad6793 Mon Sep 17 00:00:00 2001 From: Torantulino Date: Sun, 2 Apr 2023 09:56:53 +0100 Subject: [PATCH] Adds comment to call_ai_function. --- scripts/ai_functions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ai_functions.py b/scripts/ai_functions.py index 09cdb07979..38daf84caf 100644 --- a/scripts/ai_functions.py +++ b/scripts/ai_functions.py @@ -3,6 +3,7 @@ import json import openai +# This is a magic function that can do anything with no-code. See https://github.com/Torantulino/AI-Functions for more info. def call_ai_function(function, args, description, model="gpt-4"): # parse args to comma seperated string args = ", ".join(args)