From a34b2ced2d43eabfcabb88a5c5d6c47c739afb6c Mon Sep 17 00:00:00 2001 From: Pavel Jbanov Date: Mon, 6 May 2024 13:58:34 -0400 Subject: [PATCH] Deleted obsolete action types and added `custom` --- js/core/src/registry.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/core/src/registry.ts b/js/core/src/registry.ts index b1e447ad71..d24935d387 100644 --- a/js/core/src/registry.ts +++ b/js/core/src/registry.ts @@ -58,8 +58,7 @@ function pluginsByName(): Record { * Type of a runnable action. */ export type ActionType = - | 'chat-llm' - | 'text-llm' + | 'custom' | 'retriever' | 'indexer' | 'embedder'