From 8372f30f0ee99606b123351e7bb62636c62c8b23 Mon Sep 17 00:00:00 2001 From: NamH Date: Tue, 6 Aug 2024 19:19:16 +0700 Subject: [PATCH] feat: add nvidia engine (#3279) --- core/src/types/model/modelEntity.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/types/model/modelEntity.ts b/core/src/types/model/modelEntity.ts index d80071312..cd3451bdc 100644 --- a/core/src/types/model/modelEntity.ts +++ b/core/src/types/model/modelEntity.ts @@ -11,6 +11,7 @@ export const RemoteEngines = [ 'groq', 'triton_trtllm', 'cohere', + 'nvidia', ] as const export const LlmEngines = [...LocalEngines, ...RemoteEngines] as const