From 6d1d4bbdb0cefaf27545403be1faffbff6bd9d09 Mon Sep 17 00:00:00 2001 From: Donnie Adams Date: Mon, 12 Aug 2024 14:00:08 -0400 Subject: [PATCH] chore: enable caching when parsing tools This should help with rate limits. Signed-off-by: Donnie Adams --- actions/me/scripts.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/me/scripts.tsx b/actions/me/scripts.tsx index 9e5efcbd..4801a645 100644 --- a/actions/me/scripts.tsx +++ b/actions/me/scripts.tsx @@ -107,7 +107,7 @@ export async function deleteScript(script: Script) { export async function getScriptContent(scriptURL: string): Promise { try { - const script = await gpt().parse(scriptURL, true); + const script = await gpt().parse(scriptURL); return gpt().stringify(script); } catch (e) { return undefined;