@alpic80/rivet-core 1.19.1-aidon.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +7 -0
- package/README.md +176 -0
- package/dist/cjs/bundle.cjs +18915 -0
- package/dist/cjs/bundle.cjs.map +7 -0
- package/dist/esm/api/createProcessor.js +131 -0
- package/dist/esm/api/streaming.js +116 -0
- package/dist/esm/exports.js +32 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/integrations/AudioProvider.js +1 -0
- package/dist/esm/integrations/DatasetProvider.js +92 -0
- package/dist/esm/integrations/EmbeddingGenerator.js +1 -0
- package/dist/esm/integrations/GptTokenizerTokenizer.js +65 -0
- package/dist/esm/integrations/LLMProvider.js +1 -0
- package/dist/esm/integrations/Tokenizer.js +1 -0
- package/dist/esm/integrations/VectorDatabase.js +1 -0
- package/dist/esm/integrations/enableIntegrations.js +3 -0
- package/dist/esm/integrations/integrations.js +19 -0
- package/dist/esm/integrations/openai/OpenAIEmbeddingGenerator.js +23 -0
- package/dist/esm/model/DataValue.js +176 -0
- package/dist/esm/model/Dataset.js +1 -0
- package/dist/esm/model/EditorDefinition.js +1 -0
- package/dist/esm/model/GraphProcessor.js +1198 -0
- package/dist/esm/model/NodeBase.js +1 -0
- package/dist/esm/model/NodeBodySpec.js +1 -0
- package/dist/esm/model/NodeDefinition.js +12 -0
- package/dist/esm/model/NodeGraph.js +14 -0
- package/dist/esm/model/NodeImpl.js +49 -0
- package/dist/esm/model/NodeRegistration.js +144 -0
- package/dist/esm/model/Nodes.js +227 -0
- package/dist/esm/model/PluginLoadSpec.js +1 -0
- package/dist/esm/model/ProcessContext.js +1 -0
- package/dist/esm/model/Project.js +2 -0
- package/dist/esm/model/RivetPlugin.js +1 -0
- package/dist/esm/model/RivetUIContext.js +1 -0
- package/dist/esm/model/Settings.js +1 -0
- package/dist/esm/model/nodes/AbortGraphNode.js +100 -0
- package/dist/esm/model/nodes/AppendToDatasetNode.js +115 -0
- package/dist/esm/model/nodes/ArrayNode.js +144 -0
- package/dist/esm/model/nodes/AssembleMessageNode.js +199 -0
- package/dist/esm/model/nodes/AssemblePromptNode.js +129 -0
- package/dist/esm/model/nodes/AudioNode.js +101 -0
- package/dist/esm/model/nodes/BooleanNode.js +74 -0
- package/dist/esm/model/nodes/CallGraphNode.js +136 -0
- package/dist/esm/model/nodes/ChatNode.js +964 -0
- package/dist/esm/model/nodes/ChunkNode.js +166 -0
- package/dist/esm/model/nodes/CoalesceNode.js +104 -0
- package/dist/esm/model/nodes/CodeNode.js +136 -0
- package/dist/esm/model/nodes/CommentNode.js +69 -0
- package/dist/esm/model/nodes/CompareNode.js +138 -0
- package/dist/esm/model/nodes/ContextNode.js +99 -0
- package/dist/esm/model/nodes/CreateDatasetNode.js +71 -0
- package/dist/esm/model/nodes/DatasetNearestNeigborsNode.js +97 -0
- package/dist/esm/model/nodes/DelayNode.js +105 -0
- package/dist/esm/model/nodes/DelegateFunctionCallNode.js +136 -0
- package/dist/esm/model/nodes/DestructureNode.js +86 -0
- package/dist/esm/model/nodes/EvaluateNode.js +141 -0
- package/dist/esm/model/nodes/ExternalCallNode.js +162 -0
- package/dist/esm/model/nodes/ExtractJsonNode.js +122 -0
- package/dist/esm/model/nodes/ExtractMarkdownCodeBlocksNode.js +100 -0
- package/dist/esm/model/nodes/ExtractObjectPathNode.js +128 -0
- package/dist/esm/model/nodes/ExtractRegexNode.js +201 -0
- package/dist/esm/model/nodes/ExtractYamlNode.js +214 -0
- package/dist/esm/model/nodes/FilterNode.js +73 -0
- package/dist/esm/model/nodes/GetAllDatasetsNode.js +53 -0
- package/dist/esm/model/nodes/GetDatasetRowNode.js +99 -0
- package/dist/esm/model/nodes/GetEmbeddingNode.js +130 -0
- package/dist/esm/model/nodes/GetGlobalNode.js +139 -0
- package/dist/esm/model/nodes/GptFunctionNode.js +169 -0
- package/dist/esm/model/nodes/GraphInputNode.js +130 -0
- package/dist/esm/model/nodes/GraphOutputNode.js +104 -0
- package/dist/esm/model/nodes/GraphReferenceNode.js +128 -0
- package/dist/esm/model/nodes/HashNode.js +97 -0
- package/dist/esm/model/nodes/HttpCallNode.js +257 -0
- package/dist/esm/model/nodes/IfElseNode.js +138 -0
- package/dist/esm/model/nodes/IfNode.js +124 -0
- package/dist/esm/model/nodes/ImageNode.js +107 -0
- package/dist/esm/model/nodes/JoinNode.js +135 -0
- package/dist/esm/model/nodes/ListGraphsNode.js +61 -0
- package/dist/esm/model/nodes/LoadDatasetNode.js +83 -0
- package/dist/esm/model/nodes/LoopControllerNode.js +206 -0
- package/dist/esm/model/nodes/MatchNode.js +137 -0
- package/dist/esm/model/nodes/NumberNode.js +86 -0
- package/dist/esm/model/nodes/ObjectNode.js +121 -0
- package/dist/esm/model/nodes/PassthroughNode.js +78 -0
- package/dist/esm/model/nodes/PlayAudioNode.js +61 -0
- package/dist/esm/model/nodes/PopNode.js +89 -0
- package/dist/esm/model/nodes/PromptNode.js +227 -0
- package/dist/esm/model/nodes/RaceInputsNode.js +86 -0
- package/dist/esm/model/nodes/RaiseEventNode.js +84 -0
- package/dist/esm/model/nodes/RandomNumberNode.js +106 -0
- package/dist/esm/model/nodes/ReadDirectoryNode.js +165 -0
- package/dist/esm/model/nodes/ReadFileNode.js +114 -0
- package/dist/esm/model/nodes/ReplaceDatasetNode.js +118 -0
- package/dist/esm/model/nodes/SetGlobalNode.js +124 -0
- package/dist/esm/model/nodes/ShuffleNode.js +64 -0
- package/dist/esm/model/nodes/SliceNode.js +100 -0
- package/dist/esm/model/nodes/SplitNode.js +101 -0
- package/dist/esm/model/nodes/SubGraphNode.js +181 -0
- package/dist/esm/model/nodes/TextNode.js +97 -0
- package/dist/esm/model/nodes/ToJsonNode.js +78 -0
- package/dist/esm/model/nodes/ToYamlNode.js +68 -0
- package/dist/esm/model/nodes/TrimChatMessagesNode.js +120 -0
- package/dist/esm/model/nodes/URLReferenceNode.js +79 -0
- package/dist/esm/model/nodes/UserInputNode.js +111 -0
- package/dist/esm/model/nodes/VectorNearestNeighborsNode.js +127 -0
- package/dist/esm/model/nodes/VectorStoreNode.js +124 -0
- package/dist/esm/model/nodes/WaitForEventNode.js +88 -0
- package/dist/esm/native/BaseDir.js +32 -0
- package/dist/esm/native/BrowserNativeApi.js +19 -0
- package/dist/esm/native/NativeApi.js +1 -0
- package/dist/esm/plugins/aidon/index.js +2 -0
- package/dist/esm/plugins/aidon/nodes/ChatAidonNode.js +215 -0
- package/dist/esm/plugins/aidon/plugin.js +9 -0
- package/dist/esm/plugins/anthropic/anthropic.js +187 -0
- package/dist/esm/plugins/anthropic/fetchEventSource.js +106 -0
- package/dist/esm/plugins/anthropic/index.js +2 -0
- package/dist/esm/plugins/anthropic/nodes/ChatAnthropicNode.js +652 -0
- package/dist/esm/plugins/anthropic/plugin.js +18 -0
- package/dist/esm/plugins/assemblyAi/LemurActionItemsNode.js +75 -0
- package/dist/esm/plugins/assemblyAi/LemurQaNode.js +155 -0
- package/dist/esm/plugins/assemblyAi/LemurSummaryNode.js +79 -0
- package/dist/esm/plugins/assemblyAi/LemurTaskNode.js +82 -0
- package/dist/esm/plugins/assemblyAi/TranscribeAudioNode.js +125 -0
- package/dist/esm/plugins/assemblyAi/index.js +2 -0
- package/dist/esm/plugins/assemblyAi/lemurHelpers.js +114 -0
- package/dist/esm/plugins/assemblyAi/plugin.js +32 -0
- package/dist/esm/plugins/autoevals/AutoEvalsNode.js +223 -0
- package/dist/esm/plugins/autoevals/index.js +2 -0
- package/dist/esm/plugins/autoevals/plugin.js +8 -0
- package/dist/esm/plugins/gentrace/index.js +2 -0
- package/dist/esm/plugins/gentrace/plugin.js +192 -0
- package/dist/esm/plugins/google/google.js +60 -0
- package/dist/esm/plugins/google/index.js +2 -0
- package/dist/esm/plugins/google/nodes/ChatGoogleNode.js +364 -0
- package/dist/esm/plugins/google/plugin.js +32 -0
- package/dist/esm/plugins/huggingface/index.js +2 -0
- package/dist/esm/plugins/huggingface/nodes/ChatHuggingFace.js +243 -0
- package/dist/esm/plugins/huggingface/nodes/TextToImageHuggingFace.js +189 -0
- package/dist/esm/plugins/huggingface/plugin.js +26 -0
- package/dist/esm/plugins/openai/handleOpenaiError.js +17 -0
- package/dist/esm/plugins/openai/index.js +2 -0
- package/dist/esm/plugins/openai/nodes/AttachAssistantFileNode.js +123 -0
- package/dist/esm/plugins/openai/nodes/CreateAssistantNode.js +289 -0
- package/dist/esm/plugins/openai/nodes/CreateThreadMessageNode.js +176 -0
- package/dist/esm/plugins/openai/nodes/CreateThreadNode.js +157 -0
- package/dist/esm/plugins/openai/nodes/DeleteAssistantNode.js +104 -0
- package/dist/esm/plugins/openai/nodes/DeleteThreadNode.js +97 -0
- package/dist/esm/plugins/openai/nodes/GetAssistantNode.js +118 -0
- package/dist/esm/plugins/openai/nodes/GetOpenAIFileNode.js +100 -0
- package/dist/esm/plugins/openai/nodes/GetThreadNode.js +108 -0
- package/dist/esm/plugins/openai/nodes/ListAssistantsNode.js +202 -0
- package/dist/esm/plugins/openai/nodes/ListOpenAIFilesNode.js +94 -0
- package/dist/esm/plugins/openai/nodes/ListThreadMessagesNode.js +224 -0
- package/dist/esm/plugins/openai/nodes/RunThreadNode.js +630 -0
- package/dist/esm/plugins/openai/nodes/ThreadMessageNode.js +145 -0
- package/dist/esm/plugins/openai/nodes/UploadFileNode.js +121 -0
- package/dist/esm/plugins/openai/plugin.js +44 -0
- package/dist/esm/plugins/pinecone/PineconeVectorDatabase.js +88 -0
- package/dist/esm/plugins/pinecone/index.js +2 -0
- package/dist/esm/plugins/pinecone/plugin.js +19 -0
- package/dist/esm/plugins.js +21 -0
- package/dist/esm/recording/ExecutionRecorder.js +177 -0
- package/dist/esm/recording/RecordedEvents.js +1 -0
- package/dist/esm/utils/assertNever.js +3 -0
- package/dist/esm/utils/base64.js +25 -0
- package/dist/esm/utils/chatMessageToOpenAIChatCompletionMessage.js +60 -0
- package/dist/esm/utils/coerceType.js +322 -0
- package/dist/esm/utils/compatibility.js +27 -0
- package/dist/esm/utils/copyToClipboard.js +10 -0
- package/dist/esm/utils/defaults.js +2 -0
- package/dist/esm/utils/errors.js +7 -0
- package/dist/esm/utils/expectType.js +34 -0
- package/dist/esm/utils/fetchEventSource.js +120 -0
- package/dist/esm/utils/genericUtilFunctions.js +25 -0
- package/dist/esm/utils/getPluginConfig.js +23 -0
- package/dist/esm/utils/handleEscapeCharacters.js +11 -0
- package/dist/esm/utils/index.js +14 -0
- package/dist/esm/utils/inputs.js +16 -0
- package/dist/esm/utils/interpolation.js +6 -0
- package/dist/esm/utils/misc.js +1 -0
- package/dist/esm/utils/newId.js +4 -0
- package/dist/esm/utils/openai.js +219 -0
- package/dist/esm/utils/outputs.js +14 -0
- package/dist/esm/utils/serialization/serialization.js +86 -0
- package/dist/esm/utils/serialization/serializationUtils.js +13 -0
- package/dist/esm/utils/serialization/serialization_v1.js +19 -0
- package/dist/esm/utils/serialization/serialization_v2.js +24 -0
- package/dist/esm/utils/serialization/serialization_v3.js +145 -0
- package/dist/esm/utils/serialization/serialization_v4.js +200 -0
- package/dist/esm/utils/symbols.js +2 -0
- package/dist/esm/utils/time.js +14 -0
- package/dist/esm/utils/typeSafety.js +42 -0
- package/dist/types/api/createProcessor.d.ts +37 -0
- package/dist/types/api/streaming.d.ts +56 -0
- package/dist/types/exports.d.ts +33 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/integrations/AudioProvider.d.ts +4 -0
- package/dist/types/integrations/DatasetProvider.d.ts +33 -0
- package/dist/types/integrations/EmbeddingGenerator.d.ts +3 -0
- package/dist/types/integrations/GptTokenizerTokenizer.d.ts +20 -0
- package/dist/types/integrations/LLMProvider.d.ts +7 -0
- package/dist/types/integrations/Tokenizer.d.ts +11 -0
- package/dist/types/integrations/VectorDatabase.d.ts +7 -0
- package/dist/types/integrations/enableIntegrations.d.ts +1 -0
- package/dist/types/integrations/integrations.d.ts +12 -0
- package/dist/types/integrations/openai/OpenAIEmbeddingGenerator.d.ts +10 -0
- package/dist/types/model/DataValue.d.ts +138 -0
- package/dist/types/model/Dataset.d.ts +19 -0
- package/dist/types/model/EditorDefinition.d.ts +142 -0
- package/dist/types/model/GraphProcessor.d.ts +192 -0
- package/dist/types/model/NodeBase.d.ts +110 -0
- package/dist/types/model/NodeBodySpec.d.ts +19 -0
- package/dist/types/model/NodeDefinition.d.ts +13 -0
- package/dist/types/model/NodeGraph.d.ts +15 -0
- package/dist/types/model/NodeImpl.d.ts +55 -0
- package/dist/types/model/NodeRegistration.d.ts +24 -0
- package/dist/types/model/Nodes.d.ts +84 -0
- package/dist/types/model/PluginLoadSpec.d.ts +17 -0
- package/dist/types/model/ProcessContext.d.ts +69 -0
- package/dist/types/model/Project.d.ts +17 -0
- package/dist/types/model/RivetPlugin.d.ts +45 -0
- package/dist/types/model/RivetUIContext.d.ts +18 -0
- package/dist/types/model/Settings.d.ts +15 -0
- package/dist/types/model/nodes/AbortGraphNode.d.ts +22 -0
- package/dist/types/model/nodes/AppendToDatasetNode.d.ts +21 -0
- package/dist/types/model/nodes/ArrayNode.d.ts +20 -0
- package/dist/types/model/nodes/AssembleMessageNode.d.ts +23 -0
- package/dist/types/model/nodes/AssemblePromptNode.d.ts +20 -0
- package/dist/types/model/nodes/AudioNode.d.ts +20 -0
- package/dist/types/model/nodes/BooleanNode.d.ts +19 -0
- package/dist/types/model/nodes/CallGraphNode.d.ts +16 -0
- package/dist/types/model/nodes/ChatNode.d.ts +77 -0
- package/dist/types/model/nodes/ChunkNode.d.ts +22 -0
- package/dist/types/model/nodes/CoalesceNode.d.ts +14 -0
- package/dist/types/model/nodes/CodeNode.d.ts +21 -0
- package/dist/types/model/nodes/CommentNode.d.ts +20 -0
- package/dist/types/model/nodes/CompareNode.d.ts +19 -0
- package/dist/types/model/nodes/ContextNode.d.ts +24 -0
- package/dist/types/model/nodes/CreateDatasetNode.d.ts +13 -0
- package/dist/types/model/nodes/DatasetNearestNeigborsNode.d.ts +19 -0
- package/dist/types/model/nodes/DelayNode.d.ts +20 -0
- package/dist/types/model/nodes/DelegateFunctionCallNode.d.ts +25 -0
- package/dist/types/model/nodes/DestructureNode.d.ts +18 -0
- package/dist/types/model/nodes/EvaluateNode.d.ts +19 -0
- package/dist/types/model/nodes/ExternalCallNode.d.ts +22 -0
- package/dist/types/model/nodes/ExtractJsonNode.d.ts +13 -0
- package/dist/types/model/nodes/ExtractMarkdownCodeBlocksNode.d.ts +12 -0
- package/dist/types/model/nodes/ExtractObjectPathNode.d.ts +19 -0
- package/dist/types/model/nodes/ExtractRegexNode.d.ts +22 -0
- package/dist/types/model/nodes/ExtractYamlNode.d.ts +21 -0
- package/dist/types/model/nodes/FilterNode.d.ts +13 -0
- package/dist/types/model/nodes/GetAllDatasetsNode.d.ts +14 -0
- package/dist/types/model/nodes/GetDatasetRowNode.d.ts +19 -0
- package/dist/types/model/nodes/GetEmbeddingNode.d.ts +24 -0
- package/dist/types/model/nodes/GetGlobalNode.d.ts +29 -0
- package/dist/types/model/nodes/GptFunctionNode.d.ts +25 -0
- package/dist/types/model/nodes/GraphInputNode.d.ts +24 -0
- package/dist/types/model/nodes/GraphOutputNode.d.ts +22 -0
- package/dist/types/model/nodes/GraphReferenceNode.d.ts +22 -0
- package/dist/types/model/nodes/HashNode.d.ts +17 -0
- package/dist/types/model/nodes/HttpCallNode.d.ts +27 -0
- package/dist/types/model/nodes/IfElseNode.d.ts +18 -0
- package/dist/types/model/nodes/IfNode.d.ts +17 -0
- package/dist/types/model/nodes/ImageNode.d.ts +20 -0
- package/dist/types/model/nodes/JoinNode.d.ts +21 -0
- package/dist/types/model/nodes/ListGraphsNode.d.ts +14 -0
- package/dist/types/model/nodes/LoadDatasetNode.d.ts +17 -0
- package/dist/types/model/nodes/LoopControllerNode.d.ts +20 -0
- package/dist/types/model/nodes/MatchNode.d.ts +19 -0
- package/dist/types/model/nodes/NumberNode.d.ts +21 -0
- package/dist/types/model/nodes/ObjectNode.d.ts +18 -0
- package/dist/types/model/nodes/PassthroughNode.d.ts +14 -0
- package/dist/types/model/nodes/PlayAudioNode.d.ts +15 -0
- package/dist/types/model/nodes/PopNode.d.ts +19 -0
- package/dist/types/model/nodes/PromptNode.d.ts +23 -0
- package/dist/types/model/nodes/RaceInputsNode.d.ts +17 -0
- package/dist/types/model/nodes/RaiseEventNode.d.ts +22 -0
- package/dist/types/model/nodes/RandomNumberNode.d.ts +23 -0
- package/dist/types/model/nodes/ReadDirectoryNode.d.ts +30 -0
- package/dist/types/model/nodes/ReadFileNode.d.ts +23 -0
- package/dist/types/model/nodes/ReplaceDatasetNode.d.ts +21 -0
- package/dist/types/model/nodes/SetGlobalNode.d.ts +23 -0
- package/dist/types/model/nodes/ShuffleNode.d.ts +12 -0
- package/dist/types/model/nodes/SliceNode.d.ts +22 -0
- package/dist/types/model/nodes/SplitNode.d.ts +19 -0
- package/dist/types/model/nodes/SubGraphNode.d.ts +29 -0
- package/dist/types/model/nodes/TextNode.d.ts +18 -0
- package/dist/types/model/nodes/ToJsonNode.d.ts +18 -0
- package/dist/types/model/nodes/ToYamlNode.d.ts +13 -0
- package/dist/types/model/nodes/TrimChatMessagesNode.d.ts +20 -0
- package/dist/types/model/nodes/URLReferenceNode.d.ts +19 -0
- package/dist/types/model/nodes/UserInputNode.d.ts +21 -0
- package/dist/types/model/nodes/VectorNearestNeighborsNode.d.ts +24 -0
- package/dist/types/model/nodes/VectorStoreNode.d.ts +22 -0
- package/dist/types/model/nodes/WaitForEventNode.d.ts +21 -0
- package/dist/types/native/BaseDir.d.ts +29 -0
- package/dist/types/native/BrowserNativeApi.d.ts +11 -0
- package/dist/types/native/NativeApi.d.ts +17 -0
- package/dist/types/plugins/aidon/index.d.ts +2 -0
- package/dist/types/plugins/aidon/nodes/ChatAidonNode.d.ts +3 -0
- package/dist/types/plugins/aidon/plugin.d.ts +2 -0
- package/dist/types/plugins/anthropic/anthropic.d.ts +216 -0
- package/dist/types/plugins/anthropic/fetchEventSource.d.ts +11 -0
- package/dist/types/plugins/anthropic/index.d.ts +2 -0
- package/dist/types/plugins/anthropic/nodes/ChatAnthropicNode.d.ts +30 -0
- package/dist/types/plugins/anthropic/plugin.d.ts +2 -0
- package/dist/types/plugins/assemblyAi/LemurActionItemsNode.d.ts +6 -0
- package/dist/types/plugins/assemblyAi/LemurQaNode.d.ts +22 -0
- package/dist/types/plugins/assemblyAi/LemurSummaryNode.d.ts +8 -0
- package/dist/types/plugins/assemblyAi/LemurTaskNode.d.ts +8 -0
- package/dist/types/plugins/assemblyAi/TranscribeAudioNode.d.ts +7 -0
- package/dist/types/plugins/assemblyAi/index.d.ts +2 -0
- package/dist/types/plugins/assemblyAi/lemurHelpers.d.ts +67 -0
- package/dist/types/plugins/assemblyAi/plugin.d.ts +2 -0
- package/dist/types/plugins/autoevals/AutoEvalsNode.d.ts +8 -0
- package/dist/types/plugins/autoevals/index.d.ts +2 -0
- package/dist/types/plugins/autoevals/plugin.d.ts +2 -0
- package/dist/types/plugins/gentrace/index.d.ts +2 -0
- package/dist/types/plugins/gentrace/plugin.d.ts +5 -0
- package/dist/types/plugins/google/google.d.ts +60 -0
- package/dist/types/plugins/google/index.d.ts +2 -0
- package/dist/types/plugins/google/nodes/ChatGoogleNode.d.ts +27 -0
- package/dist/types/plugins/google/plugin.d.ts +2 -0
- package/dist/types/plugins/huggingface/index.d.ts +2 -0
- package/dist/types/plugins/huggingface/nodes/ChatHuggingFace.d.ts +24 -0
- package/dist/types/plugins/huggingface/nodes/TextToImageHuggingFace.d.ts +20 -0
- package/dist/types/plugins/huggingface/plugin.d.ts +2 -0
- package/dist/types/plugins/openai/handleOpenaiError.d.ts +1 -0
- package/dist/types/plugins/openai/index.d.ts +2 -0
- package/dist/types/plugins/openai/nodes/AttachAssistantFileNode.d.ts +10 -0
- package/dist/types/plugins/openai/nodes/CreateAssistantNode.d.ts +26 -0
- package/dist/types/plugins/openai/nodes/CreateThreadMessageNode.d.ts +15 -0
- package/dist/types/plugins/openai/nodes/CreateThreadNode.d.ts +13 -0
- package/dist/types/plugins/openai/nodes/DeleteAssistantNode.d.ts +8 -0
- package/dist/types/plugins/openai/nodes/DeleteThreadNode.d.ts +8 -0
- package/dist/types/plugins/openai/nodes/GetAssistantNode.d.ts +8 -0
- package/dist/types/plugins/openai/nodes/GetOpenAIFileNode.d.ts +8 -0
- package/dist/types/plugins/openai/nodes/GetThreadNode.d.ts +8 -0
- package/dist/types/plugins/openai/nodes/ListAssistantsNode.d.ts +14 -0
- package/dist/types/plugins/openai/nodes/ListOpenAIFilesNode.d.ts +8 -0
- package/dist/types/plugins/openai/nodes/ListThreadMessagesNode.d.ts +16 -0
- package/dist/types/plugins/openai/nodes/RunThreadNode.d.ts +28 -0
- package/dist/types/plugins/openai/nodes/ThreadMessageNode.d.ts +14 -0
- package/dist/types/plugins/openai/nodes/UploadFileNode.d.ts +7 -0
- package/dist/types/plugins/openai/plugin.d.ts +2 -0
- package/dist/types/plugins/pinecone/PineconeVectorDatabase.d.ts +9 -0
- package/dist/types/plugins/pinecone/index.d.ts +2 -0
- package/dist/types/plugins/pinecone/plugin.d.ts +2 -0
- package/dist/types/plugins.d.ts +20 -0
- package/dist/types/recording/ExecutionRecorder.d.ts +25 -0
- package/dist/types/recording/RecordedEvents.d.ts +100 -0
- package/dist/types/utils/assertNever.d.ts +1 -0
- package/dist/types/utils/base64.d.ts +2 -0
- package/dist/types/utils/chatMessageToOpenAIChatCompletionMessage.d.ts +3 -0
- package/dist/types/utils/coerceType.d.ts +6 -0
- package/dist/types/utils/compatibility.d.ts +3 -0
- package/dist/types/utils/copyToClipboard.d.ts +1 -0
- package/dist/types/utils/defaults.d.ts +2 -0
- package/dist/types/utils/errors.d.ts +2 -0
- package/dist/types/utils/expectType.d.ts +3 -0
- package/dist/types/utils/fetchEventSource.d.ts +12 -0
- package/dist/types/utils/genericUtilFunctions.d.ts +21 -0
- package/dist/types/utils/getPluginConfig.d.ts +2 -0
- package/dist/types/utils/handleEscapeCharacters.d.ts +2 -0
- package/dist/types/utils/index.d.ts +14 -0
- package/dist/types/utils/inputs.d.ts +3 -0
- package/dist/types/utils/interpolation.d.ts +1 -0
- package/dist/types/utils/misc.d.ts +1 -0
- package/dist/types/utils/newId.d.ts +1 -0
- package/dist/types/utils/openai.d.ts +739 -0
- package/dist/types/utils/outputs.d.ts +3 -0
- package/dist/types/utils/serialization/serialization.d.ts +12 -0
- package/dist/types/utils/serialization/serializationUtils.d.ts +6 -0
- package/dist/types/utils/serialization/serialization_v1.d.ts +3 -0
- package/dist/types/utils/serialization/serialization_v2.d.ts +3 -0
- package/dist/types/utils/serialization/serialization_v3.d.ts +19 -0
- package/dist/types/utils/serialization/serialization_v4.d.ts +9 -0
- package/dist/types/utils/symbols.d.ts +3 -0
- package/dist/types/utils/time.d.ts +22 -0
- package/dist/types/utils/typeSafety.d.ts +37 -0
- package/package.json +97 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import {} from '../index.js';
|
|
2
|
+
import { mapValues } from '../utils/typeSafety.js';
|
|
3
|
+
import { getProcessorEvents, getProcessorSSEStream, getSingleNodeStream } from './streaming.js';
|
|
4
|
+
import { GraphProcessor } from '../model/GraphProcessor.js';
|
|
5
|
+
import { deserializeProject } from '../utils/serialization/serialization.js';
|
|
6
|
+
import { DEFAULT_CHAT_NODE_TIMEOUT } from '../utils/defaults.js';
|
|
7
|
+
export function looseDataValuesToDataValues(values) {
|
|
8
|
+
return mapValues(values, (val) => looseDataValueToDataValue(val));
|
|
9
|
+
}
|
|
10
|
+
export function looseDataValueToDataValue(value) {
|
|
11
|
+
if (typeof value === 'string') {
|
|
12
|
+
return { type: 'string', value };
|
|
13
|
+
}
|
|
14
|
+
if (typeof value === 'number') {
|
|
15
|
+
return { type: 'number', value };
|
|
16
|
+
}
|
|
17
|
+
if (typeof value === 'boolean') {
|
|
18
|
+
return { type: 'boolean', value };
|
|
19
|
+
}
|
|
20
|
+
return value;
|
|
21
|
+
}
|
|
22
|
+
export function coreCreateProcessor(project, options) {
|
|
23
|
+
const { graph, inputs = {}, context = {} } = options;
|
|
24
|
+
const graphId = graph
|
|
25
|
+
? graph in project.graphs
|
|
26
|
+
? graph
|
|
27
|
+
: Object.values(project.graphs).find((g) => g.metadata?.name === graph)?.metadata?.id
|
|
28
|
+
: project.metadata.mainGraphId;
|
|
29
|
+
if (!graphId) {
|
|
30
|
+
throw new Error(`Graph not found, and no main graph specified.`);
|
|
31
|
+
}
|
|
32
|
+
const processor = new GraphProcessor(project, graphId, options.registry);
|
|
33
|
+
if (options.onStart) {
|
|
34
|
+
processor.on('start', options.onStart);
|
|
35
|
+
}
|
|
36
|
+
if (options.onNodeStart) {
|
|
37
|
+
processor.on('nodeStart', options.onNodeStart);
|
|
38
|
+
}
|
|
39
|
+
if (options.onNodeFinish) {
|
|
40
|
+
processor.on('nodeFinish', options.onNodeFinish);
|
|
41
|
+
}
|
|
42
|
+
if (options.onNodeError) {
|
|
43
|
+
processor.on('nodeError', options.onNodeError);
|
|
44
|
+
}
|
|
45
|
+
if (options.onNodeExcluded) {
|
|
46
|
+
processor.on('nodeExcluded', options.onNodeExcluded);
|
|
47
|
+
}
|
|
48
|
+
if (options.onGraphStart) {
|
|
49
|
+
processor.on('graphStart', options.onGraphStart);
|
|
50
|
+
}
|
|
51
|
+
if (options.onGraphError) {
|
|
52
|
+
processor.on('graphError', options.onGraphError);
|
|
53
|
+
}
|
|
54
|
+
if (options.onGraphFinish) {
|
|
55
|
+
processor.on('graphFinish', options.onGraphFinish);
|
|
56
|
+
}
|
|
57
|
+
if (options.onPartialOutput) {
|
|
58
|
+
processor.on('partialOutput', options.onPartialOutput);
|
|
59
|
+
}
|
|
60
|
+
if (options.onUserInput) {
|
|
61
|
+
processor.on('userInput', options.onUserInput);
|
|
62
|
+
}
|
|
63
|
+
if (options.onDone) {
|
|
64
|
+
processor.on('done', options.onDone);
|
|
65
|
+
}
|
|
66
|
+
if (options.onAbort) {
|
|
67
|
+
processor.on('abort', options.onAbort);
|
|
68
|
+
}
|
|
69
|
+
if (options.onGraphAbort) {
|
|
70
|
+
processor.on('graphAbort', options.onGraphAbort);
|
|
71
|
+
}
|
|
72
|
+
if (options.onTrace) {
|
|
73
|
+
processor.on('trace', options.onTrace);
|
|
74
|
+
}
|
|
75
|
+
if (options.onNodeOutputsCleared) {
|
|
76
|
+
processor.on('nodeOutputsCleared', options.onNodeOutputsCleared);
|
|
77
|
+
}
|
|
78
|
+
if (options.externalFunctions) {
|
|
79
|
+
for (const [name, fn] of Object.entries(options.externalFunctions)) {
|
|
80
|
+
processor.setExternalFunction(name, fn);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
if (options.onUserEvent) {
|
|
84
|
+
for (const [name, fn] of Object.entries(options.onUserEvent)) {
|
|
85
|
+
processor.onUserEvent(name, fn);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
options.abortSignal?.addEventListener('abort', () => {
|
|
89
|
+
processor.abort();
|
|
90
|
+
});
|
|
91
|
+
const resolvedInputs = looseDataValuesToDataValues(inputs);
|
|
92
|
+
const resolvedContextValues = looseDataValuesToDataValues(context);
|
|
93
|
+
return {
|
|
94
|
+
processor,
|
|
95
|
+
inputs: resolvedInputs,
|
|
96
|
+
contextValues: resolvedContextValues,
|
|
97
|
+
getEvents: (spec) => getProcessorEvents(processor, spec),
|
|
98
|
+
getSSEStream: (spec) => getProcessorSSEStream(processor, spec),
|
|
99
|
+
streamNode: (nodeIdOrTitle) => getSingleNodeStream(processor, nodeIdOrTitle),
|
|
100
|
+
async run() {
|
|
101
|
+
const outputs = await processor.processGraph({
|
|
102
|
+
nativeApi: options.nativeApi,
|
|
103
|
+
datasetProvider: options.datasetProvider,
|
|
104
|
+
audioProvider: options.audioProvider,
|
|
105
|
+
settings: {
|
|
106
|
+
openAiKey: options.openAiKey ?? '',
|
|
107
|
+
openAiOrganization: options.openAiOrganization ?? '',
|
|
108
|
+
openAiEndpoint: options.openAiEndpoint ?? '',
|
|
109
|
+
pluginEnv: options.pluginEnv ?? {},
|
|
110
|
+
pluginSettings: options.pluginSettings ?? {},
|
|
111
|
+
recordingPlaybackLatency: 1000,
|
|
112
|
+
chatNodeHeaders: options.chatNodeHeaders ?? {},
|
|
113
|
+
chatNodeTimeout: options.chatNodeTimeout ?? DEFAULT_CHAT_NODE_TIMEOUT,
|
|
114
|
+
},
|
|
115
|
+
getChatNodeEndpoint: options.getChatNodeEndpoint,
|
|
116
|
+
}, resolvedInputs, resolvedContextValues);
|
|
117
|
+
return outputs;
|
|
118
|
+
},
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
export async function coreRunGraph(project, options) {
|
|
122
|
+
const processorInfo = coreCreateProcessor(project, options);
|
|
123
|
+
return processorInfo.run();
|
|
124
|
+
}
|
|
125
|
+
export function loadProjectFromString(content) {
|
|
126
|
+
const [project] = deserializeProject(content);
|
|
127
|
+
return project;
|
|
128
|
+
}
|
|
129
|
+
export function loadProjectAndAttachedDataFromString(content) {
|
|
130
|
+
return deserializeProject(content);
|
|
131
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import {} from '../index.js';
|
|
2
|
+
import { coerceType } from '../utils/coerceType.js';
|
|
3
|
+
/** A simplified way to listen and stream processor events, including filtering. */
|
|
4
|
+
export async function* getProcessorEvents(processor, spec) {
|
|
5
|
+
const previousIndexes = new Map();
|
|
6
|
+
for await (const event of processor.events()) {
|
|
7
|
+
if (event.type === 'partialOutput') {
|
|
8
|
+
if (spec.partialOutputs === true ||
|
|
9
|
+
spec.partialOutputs?.includes(event.node.id) ||
|
|
10
|
+
spec.partialOutputs?.includes(event.node.title)) {
|
|
11
|
+
const currentOutput = coerceType(event.outputs['response'], 'string');
|
|
12
|
+
const delta = currentOutput.slice(previousIndexes.get(event.node.id) ?? 0);
|
|
13
|
+
yield {
|
|
14
|
+
type: 'partialOutput',
|
|
15
|
+
nodeId: event.node.id,
|
|
16
|
+
nodeTitle: event.node.title,
|
|
17
|
+
delta,
|
|
18
|
+
};
|
|
19
|
+
previousIndexes.set(event.node.id, currentOutput.length);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
else if (event.type === 'done') {
|
|
23
|
+
if (spec.done) {
|
|
24
|
+
yield {
|
|
25
|
+
type: 'done',
|
|
26
|
+
graphOutput: event.results,
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
else if (event.type === 'error') {
|
|
31
|
+
if (spec.error) {
|
|
32
|
+
yield {
|
|
33
|
+
type: 'error',
|
|
34
|
+
error: typeof event.error === 'string' ? event.error : event.error.toString(),
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
else if (event.type === 'nodeStart') {
|
|
39
|
+
if (spec.nodeStart === true ||
|
|
40
|
+
spec.nodeStart?.includes(event.node.id) ||
|
|
41
|
+
spec.nodeStart?.includes(event.node.title)) {
|
|
42
|
+
yield {
|
|
43
|
+
type: 'nodeStart',
|
|
44
|
+
inputs: event.inputs,
|
|
45
|
+
nodeId: event.node.id,
|
|
46
|
+
nodeTitle: event.node.title,
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
else if (event.type === 'nodeFinish') {
|
|
51
|
+
if (spec.nodeFinish === true ||
|
|
52
|
+
spec.nodeFinish?.includes(event.node.id) ||
|
|
53
|
+
spec.nodeFinish?.includes(event.node.title)) {
|
|
54
|
+
yield {
|
|
55
|
+
type: 'nodeFinish',
|
|
56
|
+
outputs: event.outputs,
|
|
57
|
+
nodeId: event.node.id,
|
|
58
|
+
nodeTitle: event.node.title,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Creates a ReadableStream for processor events, following the Server-Sent Events protocol.
|
|
66
|
+
* https://developer.mozilla.org/en-US/docs/Web/API/EventSource
|
|
67
|
+
*
|
|
68
|
+
* Includes configuration for what events to send to the client, for example you can stream the partial output deltas
|
|
69
|
+
* for specific nodes, and/or the graph output when done.
|
|
70
|
+
*/
|
|
71
|
+
export function getProcessorSSEStream(processor,
|
|
72
|
+
/** The spec for what you're streaming to the client */
|
|
73
|
+
spec) {
|
|
74
|
+
const encoder = new TextEncoder();
|
|
75
|
+
function sendEvent(controller, type, data) {
|
|
76
|
+
const event = `event: ${type}\ndata: ${JSON.stringify(data)}\n\n`;
|
|
77
|
+
controller.enqueue(encoder.encode(event));
|
|
78
|
+
}
|
|
79
|
+
return new ReadableStream({
|
|
80
|
+
async start(controller) {
|
|
81
|
+
try {
|
|
82
|
+
for await (const event of getProcessorEvents(processor, spec)) {
|
|
83
|
+
sendEvent(controller, event.type, event);
|
|
84
|
+
}
|
|
85
|
+
controller.close();
|
|
86
|
+
}
|
|
87
|
+
catch (err) {
|
|
88
|
+
controller.error(err);
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
export function getSingleNodeStream(processor, nodeIdOrTitle) {
|
|
94
|
+
return new ReadableStream({
|
|
95
|
+
async start(controller) {
|
|
96
|
+
try {
|
|
97
|
+
for await (const event of getProcessorEvents(processor, {
|
|
98
|
+
partialOutputs: [nodeIdOrTitle],
|
|
99
|
+
nodeFinish: [nodeIdOrTitle],
|
|
100
|
+
})) {
|
|
101
|
+
if (event.type === 'partialOutput' && (event.nodeId === nodeIdOrTitle || event.nodeTitle === nodeIdOrTitle)) {
|
|
102
|
+
controller.enqueue(`data: ${JSON.stringify(event.delta)}\n\n`);
|
|
103
|
+
}
|
|
104
|
+
else if (event.type === 'nodeFinish' &&
|
|
105
|
+
(event.nodeId === nodeIdOrTitle || event.nodeTitle === nodeIdOrTitle)) {
|
|
106
|
+
controller.close();
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
controller.close();
|
|
110
|
+
}
|
|
111
|
+
catch (err) {
|
|
112
|
+
controller.error(err);
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
});
|
|
116
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from './utils/index.js';
|
|
2
|
+
export * from './model/GraphProcessor.js';
|
|
3
|
+
export * from './model/DataValue.js';
|
|
4
|
+
export * from './model/NodeBase.js';
|
|
5
|
+
export * from './model/NodeGraph.js';
|
|
6
|
+
export * from './model/NodeImpl.js';
|
|
7
|
+
export * from './model/NodeDefinition.js';
|
|
8
|
+
export * from './model/Nodes.js';
|
|
9
|
+
export * from './model/Project.js';
|
|
10
|
+
export * from './native/BaseDir.js';
|
|
11
|
+
export * from './native/NativeApi.js';
|
|
12
|
+
export * from './native/BrowserNativeApi.js';
|
|
13
|
+
export * from './model/ProcessContext.js';
|
|
14
|
+
export * from './integrations/integrations.js';
|
|
15
|
+
import './integrations/enableIntegrations.js';
|
|
16
|
+
export * from './integrations/VectorDatabase.js';
|
|
17
|
+
export * from './integrations/EmbeddingGenerator.js';
|
|
18
|
+
export * from './integrations/LLMProvider.js';
|
|
19
|
+
export * from './recording/ExecutionRecorder.js';
|
|
20
|
+
export * from './recording/RecordedEvents.js';
|
|
21
|
+
export * from './model/RivetPlugin.js';
|
|
22
|
+
export * from './plugins.js';
|
|
23
|
+
export * from './model/NodeRegistration.js';
|
|
24
|
+
export * from './model/EditorDefinition.js';
|
|
25
|
+
export * from './model/NodeBodySpec.js';
|
|
26
|
+
export * from './integrations/DatasetProvider.js';
|
|
27
|
+
export * from './model/Dataset.js';
|
|
28
|
+
export * from './api/streaming.js';
|
|
29
|
+
export * from './api/createProcessor.js';
|
|
30
|
+
export * from './integrations/AudioProvider.js';
|
|
31
|
+
import * as openai from './utils/openai.js';
|
|
32
|
+
export { openai };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import {} from '../index.js';
|
|
2
|
+
import { cloneDeep } from 'lodash-es';
|
|
3
|
+
export class InMemoryDatasetProvider {
|
|
4
|
+
#datasets;
|
|
5
|
+
constructor(datasets) {
|
|
6
|
+
this.#datasets = datasets;
|
|
7
|
+
}
|
|
8
|
+
async getDatasetMetadata(id) {
|
|
9
|
+
const dataset = this.#datasets.find((d) => d.meta.id === id);
|
|
10
|
+
return dataset?.meta;
|
|
11
|
+
}
|
|
12
|
+
async getDatasetsForProject(projectId) {
|
|
13
|
+
return this.#datasets.map((d) => d.meta);
|
|
14
|
+
}
|
|
15
|
+
async getDatasetData(id) {
|
|
16
|
+
const dataset = this.#datasets.find((d) => d.meta.id === id);
|
|
17
|
+
if (!dataset) {
|
|
18
|
+
return { id, rows: [] };
|
|
19
|
+
}
|
|
20
|
+
return dataset.data;
|
|
21
|
+
}
|
|
22
|
+
async putDatasetRow(id, row) {
|
|
23
|
+
const dataset = this.#datasets.find((d) => d.meta.id === id);
|
|
24
|
+
if (!dataset) {
|
|
25
|
+
throw new Error(`Dataset ${id} not found`);
|
|
26
|
+
}
|
|
27
|
+
const existingRow = dataset.data.rows.find((r) => r.id === row.id);
|
|
28
|
+
if (existingRow) {
|
|
29
|
+
existingRow.data = row.data;
|
|
30
|
+
existingRow.embedding = row.embedding;
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
dataset.data.rows.push(row);
|
|
34
|
+
}
|
|
35
|
+
async putDatasetData(id, data) {
|
|
36
|
+
const dataset = this.#datasets.find((d) => d.meta.id === id);
|
|
37
|
+
if (!dataset) {
|
|
38
|
+
throw new Error(`Dataset ${id} not found`);
|
|
39
|
+
}
|
|
40
|
+
dataset.data = data;
|
|
41
|
+
}
|
|
42
|
+
async putDatasetMetadata(metadata) {
|
|
43
|
+
const matchingDataset = this.#datasets.find((d) => d.meta.id === metadata.id);
|
|
44
|
+
if (matchingDataset) {
|
|
45
|
+
matchingDataset.meta = metadata;
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
this.#datasets.push({
|
|
49
|
+
meta: metadata,
|
|
50
|
+
data: {
|
|
51
|
+
id: metadata.id,
|
|
52
|
+
rows: [],
|
|
53
|
+
},
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
async clearDatasetData(id) {
|
|
57
|
+
const dataset = this.#datasets.find((d) => d.meta.id === id);
|
|
58
|
+
if (!dataset) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
dataset.data = {
|
|
62
|
+
id,
|
|
63
|
+
rows: [],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
async deleteDataset(id) {
|
|
67
|
+
const index = this.#datasets.findIndex((d) => d.meta.id === id);
|
|
68
|
+
if (index === -1) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
this.#datasets.splice(index, 1);
|
|
72
|
+
}
|
|
73
|
+
async knnDatasetRows(datasetId, k, vector) {
|
|
74
|
+
const allRows = await this.getDatasetData(datasetId);
|
|
75
|
+
const sorted = allRows.rows
|
|
76
|
+
.filter((row) => row.embedding != null)
|
|
77
|
+
.map((row) => ({
|
|
78
|
+
row,
|
|
79
|
+
similarity: dotProductSimilarity(vector, row.embedding),
|
|
80
|
+
}))
|
|
81
|
+
.sort((a, b) => b.similarity - a.similarity);
|
|
82
|
+
return sorted.slice(0, k).map((r) => ({ ...r.row, distance: r.similarity }));
|
|
83
|
+
}
|
|
84
|
+
async exportDatasetsForProject(_projectId) {
|
|
85
|
+
// Cloning is safest... but slow
|
|
86
|
+
return cloneDeep(this.#datasets);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
/** OpenAI embeddings are already normalized, so this is equivalent to cosine similarity */
|
|
90
|
+
const dotProductSimilarity = (a, b) => {
|
|
91
|
+
return a.reduce((acc, val, i) => acc + val * b[i], 0);
|
|
92
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import {} from '../index.js';
|
|
2
|
+
import Emittery from 'emittery';
|
|
3
|
+
import { getError } from '../utils/errors.js';
|
|
4
|
+
import { chatMessageToOpenAIChatCompletionMessage } from '../utils/chatMessageToOpenAIChatCompletionMessage.js';
|
|
5
|
+
export class GptTokenizerTokenizer {
|
|
6
|
+
emitter = new Emittery();
|
|
7
|
+
on(event, listener) {
|
|
8
|
+
this.emitter.on(event, listener);
|
|
9
|
+
}
|
|
10
|
+
async getTokenCountForString(input, _info) {
|
|
11
|
+
const { encode } = await import('gpt-tokenizer');
|
|
12
|
+
return encode(input).length;
|
|
13
|
+
}
|
|
14
|
+
async getTokenCountForMessages(messages, functions, _info) {
|
|
15
|
+
try {
|
|
16
|
+
const openaiMessages = await Promise.all(messages.map((message) => chatMessageToOpenAIChatCompletionMessage(message)));
|
|
17
|
+
const validMessages = openaiMessages
|
|
18
|
+
.filter((message) => message.role !== 'tool')
|
|
19
|
+
.map((message) => {
|
|
20
|
+
if (Array.isArray(message.content)) {
|
|
21
|
+
const textContent = message.content
|
|
22
|
+
.filter((c) => c.type === 'text')
|
|
23
|
+
.map((c) => c.text)
|
|
24
|
+
.join('');
|
|
25
|
+
return { ...message, content: textContent };
|
|
26
|
+
}
|
|
27
|
+
return message;
|
|
28
|
+
});
|
|
29
|
+
const { encode, encodeChat } = await import('gpt-tokenizer');
|
|
30
|
+
const encodedChat = encodeChat(validMessages, 'gpt-3.5-turbo');
|
|
31
|
+
const encodedFunctions = functions && functions.length > 0 ? encode(this.convertGptFunctionsToPromptString(functions)) : [];
|
|
32
|
+
return encodedChat.length + encodedFunctions.length;
|
|
33
|
+
}
|
|
34
|
+
catch (err) {
|
|
35
|
+
this.emitter.emit('error', getError(err));
|
|
36
|
+
return 0;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Converts GPT Functions to approximate TypeScript-style string.
|
|
41
|
+
* Per thread: https://community.openai.com/t/how-to-calculate-the-tokens-when-using-function-call/266573/24
|
|
42
|
+
* We should consider using a different library, eg. https://github.com/hmarr/openai-chat-tokens
|
|
43
|
+
* @param functions
|
|
44
|
+
*/
|
|
45
|
+
convertGptFunctionsToPromptString(functions) {
|
|
46
|
+
return `
|
|
47
|
+
# Tools
|
|
48
|
+
|
|
49
|
+
## functions
|
|
50
|
+
|
|
51
|
+
namespace functions {
|
|
52
|
+
${functions
|
|
53
|
+
.map((fn) => `
|
|
54
|
+
// ${fn.description}
|
|
55
|
+
type ${fn.name} = (_: {
|
|
56
|
+
${Object.entries(fn.parameters?.properties ?? {})
|
|
57
|
+
.map(([parameterName, value]) => `// ${value?.description}\n${parameterName}?: ${value?.type}`)
|
|
58
|
+
.join('\n')}
|
|
59
|
+
})
|
|
60
|
+
`)
|
|
61
|
+
.join('')}
|
|
62
|
+
} // namespace functions
|
|
63
|
+
`;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {} from '../model/DataValue.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {} from '../model/DataValue.js';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import {} from '../model/ProcessContext.js';
|
|
2
|
+
import {} from './EmbeddingGenerator.js';
|
|
3
|
+
import {} from './LLMProvider.js';
|
|
4
|
+
import {} from './VectorDatabase.js';
|
|
5
|
+
const registeredIntegrations = {
|
|
6
|
+
vectorDatabase: new Map(),
|
|
7
|
+
llmProvider: new Map(),
|
|
8
|
+
embeddingGenerator: new Map(),
|
|
9
|
+
};
|
|
10
|
+
export function registerIntegration(type, integrationKey, factory) {
|
|
11
|
+
registeredIntegrations[type].set(integrationKey, factory);
|
|
12
|
+
}
|
|
13
|
+
export function getIntegration(type, integrationKey, context) {
|
|
14
|
+
const factory = registeredIntegrations[type].get(integrationKey);
|
|
15
|
+
if (!factory) {
|
|
16
|
+
throw new Error(`Integration ${integrationKey} not found`);
|
|
17
|
+
}
|
|
18
|
+
return factory(context);
|
|
19
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {} from '../../index.js';
|
|
2
|
+
import {} from '../EmbeddingGenerator.js';
|
|
3
|
+
import { OpenAI } from 'openai';
|
|
4
|
+
export class OpenAIEmbeddingGenerator {
|
|
5
|
+
#settings;
|
|
6
|
+
constructor(settings) {
|
|
7
|
+
this.#settings = settings;
|
|
8
|
+
}
|
|
9
|
+
async generateEmbedding(text, options) {
|
|
10
|
+
const api = new OpenAI({
|
|
11
|
+
apiKey: this.#settings.openAiKey,
|
|
12
|
+
organization: this.#settings.openAiOrganization,
|
|
13
|
+
dangerouslyAllowBrowser: true, // It's fine in Rivet
|
|
14
|
+
});
|
|
15
|
+
const response = await api.embeddings.create({
|
|
16
|
+
input: text,
|
|
17
|
+
model: options?.model ?? 'text-embedding-ada-002',
|
|
18
|
+
dimensions: options?.dimensions
|
|
19
|
+
});
|
|
20
|
+
const embeddings = response.data;
|
|
21
|
+
return embeddings[0].embedding;
|
|
22
|
+
}
|
|
23
|
+
}
|