From 8cd929d9daedffd25cde517210c3c2d20d8a1423 Mon Sep 17 00:00:00 2001 From: Aaron Delasy Date: Wed, 23 Oct 2024 03:39:52 +0300 Subject: [PATCH] Fix typo in perplexity llama function name --- models/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/index.ts b/models/index.ts index 3c6aafe..115ab4d 100644 --- a/models/index.ts +++ b/models/index.ts @@ -40,7 +40,7 @@ export async function runModel( break; } case "perplexity-llama-3.1": { - result = await perplexityLlama(prompt, map); + result = await perplexityLlama31(prompt, map); break; } default: {