From e3c14fba2800b6e34972237b2bb006eeda8771d7 Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Wed, 15 May 2024 15:25:47 +0900 Subject: [PATCH] Fix missing import --- node/chat-with-anyscale/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/chat-with-anyscale/src/main.js b/node/chat-with-anyscale/src/main.js index 80efe229..177cd0c2 100644 --- a/node/chat-with-anyscale/src/main.js +++ b/node/chat-with-anyscale/src/main.js @@ -1,4 +1,4 @@ -import { getStaticFile } from "./utils.js"; +import { getStaticFile, throwIfMissing } from "./utils.js"; import OpenAI from "openai"; export default async ({ req, res, error }) => {