@n8n/n8n-nodes-langchain 0.0.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.md +85 -0
- package/README.md +13 -0
- package/dist/credentials/AnthropicApi.credentials.d.ts +9 -0
- package/dist/credentials/AnthropicApi.credentials.js +45 -0
- package/dist/credentials/AnthropicApi.credentials.js.map +1 -0
- package/dist/credentials/CohereApi.credentials.d.ts +9 -0
- package/dist/credentials/CohereApi.credentials.js +40 -0
- package/dist/credentials/CohereApi.credentials.js.map +1 -0
- package/dist/credentials/GooglePalmApi.credentials.d.ts +9 -0
- package/dist/credentials/GooglePalmApi.credentials.js +42 -0
- package/dist/credentials/GooglePalmApi.credentials.js.map +1 -0
- package/dist/credentials/HuggingFaceApi.credentials.d.ts +9 -0
- package/dist/credentials/HuggingFaceApi.credentials.js +36 -0
- package/dist/credentials/HuggingFaceApi.credentials.js.map +1 -0
- package/dist/credentials/MotorheadApi.credentials.d.ts +9 -0
- package/dist/credentials/MotorheadApi.credentials.js +49 -0
- package/dist/credentials/MotorheadApi.credentials.js.map +1 -0
- package/dist/credentials/OllamaApi.credentials.d.ts +8 -0
- package/dist/credentials/OllamaApi.credentials.js +35 -0
- package/dist/credentials/OllamaApi.credentials.js.map +1 -0
- package/dist/credentials/PineconeApi.credentials.d.ts +8 -0
- package/dist/credentials/PineconeApi.credentials.js +37 -0
- package/dist/credentials/PineconeApi.credentials.js.map +1 -0
- package/dist/credentials/SerpApi.credentials.d.ts +9 -0
- package/dist/credentials/SerpApi.credentials.js +36 -0
- package/dist/credentials/SerpApi.credentials.js.map +1 -0
- package/dist/credentials/WolframAlphaApi.credentials.d.ts +9 -0
- package/dist/credentials/WolframAlphaApi.credentials.js +40 -0
- package/dist/credentials/WolframAlphaApi.credentials.js.map +1 -0
- package/dist/credentials/XataApi.credentials.d.ts +9 -0
- package/dist/credentials/XataApi.credentials.js +50 -0
- package/dist/credentials/XataApi.credentials.js.map +1 -0
- package/dist/credentials/ZepApi.credentials.d.ts +9 -0
- package/dist/credentials/ZepApi.credentials.js +43 -0
- package/dist/credentials/ZepApi.credentials.js.map +1 -0
- package/dist/nodes/agents/Agent/Agent.node.d.ts +5 -0
- package/dist/nodes/agents/Agent/Agent.node.js +188 -0
- package/dist/nodes/agents/Agent/Agent.node.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/ConversationalAgent/description.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/ConversationalAgent/description.js +41 -0
- package/dist/nodes/agents/Agent/agents/ConversationalAgent/description.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/ConversationalAgent/execute.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/ConversationalAgent/execute.js +58 -0
- package/dist/nodes/agents/Agent/agents/ConversationalAgent/execute.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/OpenAiFunctionsAgent/description.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/OpenAiFunctionsAgent/description.js +17 -0
- package/dist/nodes/agents/Agent/agents/OpenAiFunctionsAgent/description.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/OpenAiFunctionsAgent/execute.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/OpenAiFunctionsAgent/execute.js +53 -0
- package/dist/nodes/agents/Agent/agents/OpenAiFunctionsAgent/execute.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/ReActAgent/description.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/ReActAgent/description.js +17 -0
- package/dist/nodes/agents/Agent/agents/ReActAgent/description.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/ReActAgent/execute.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/ReActAgent/execute.js +46 -0
- package/dist/nodes/agents/Agent/agents/ReActAgent/execute.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/description.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/description.js +113 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/description.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/execute.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/execute.js +64 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/execute.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/mysql.d.ts +3 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/mysql.js +21 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/mysql.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/postgres.d.ts +3 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/postgres.js +21 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/postgres.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/sqlite.d.ts +3 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/sqlite.js +53 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/handlers/sqlite.js.map +1 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/prompts.d.ts +2 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/prompts.js +21 -0
- package/dist/nodes/agents/Agent/agents/SqlAgent/other/prompts.js.map +1 -0
- package/dist/nodes/chains/ChainLLM/ChainLlm.node.d.ts +5 -0
- package/dist/nodes/chains/ChainLLM/ChainLlm.node.js +152 -0
- package/dist/nodes/chains/ChainLLM/ChainLlm.node.js.map +1 -0
- package/dist/nodes/chains/ChainRetrievalQA/ChainRetrievalQa.node.d.ts +5 -0
- package/dist/nodes/chains/ChainRetrievalQA/ChainRetrievalQa.node.js +100 -0
- package/dist/nodes/chains/ChainRetrievalQA/ChainRetrievalQa.node.js.map +1 -0
- package/dist/nodes/chains/ChainSummarization/ChainSummarization.node.d.ts +5 -0
- package/dist/nodes/chains/ChainSummarization/ChainSummarization.node.js +140 -0
- package/dist/nodes/chains/ChainSummarization/ChainSummarization.node.js.map +1 -0
- package/dist/nodes/code/Code.node.d.ts +7 -0
- package/dist/nodes/code/Code.node.js +296 -0
- package/dist/nodes/code/Code.node.js.map +1 -0
- package/dist/nodes/document_loaders/DocumentBinaryInputLoader/DocumentBinaryInputLoader.node.d.ts +5 -0
- package/dist/nodes/document_loaders/DocumentBinaryInputLoader/DocumentBinaryInputLoader.node.js +148 -0
- package/dist/nodes/document_loaders/DocumentBinaryInputLoader/DocumentBinaryInputLoader.node.js.map +1 -0
- package/dist/nodes/document_loaders/DocumentBinaryInputLoader/binary.svg +3 -0
- package/dist/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.d.ts +5 -0
- package/dist/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.js +105 -0
- package/dist/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.js.map +1 -0
- package/dist/nodes/document_loaders/DocumentGithubLoader/github.svg +1 -0
- package/dist/nodes/document_loaders/DocumentJSONInputLoader/DocumentJsonInputLoader.node.d.ts +5 -0
- package/dist/nodes/document_loaders/DocumentJSONInputLoader/DocumentJsonInputLoader.node.js +61 -0
- package/dist/nodes/document_loaders/DocumentJSONInputLoader/DocumentJsonInputLoader.node.js.map +1 -0
- package/dist/nodes/document_loaders/DocumentJSONInputLoader/json.svg +48 -0
- package/dist/nodes/embeddings/EmbeddingsCohere/EmbeddingsCohere.node.d.ts +5 -0
- package/dist/nodes/embeddings/EmbeddingsCohere/EmbeddingsCohere.node.js +89 -0
- package/dist/nodes/embeddings/EmbeddingsCohere/EmbeddingsCohere.node.js.map +1 -0
- package/dist/nodes/embeddings/EmbeddingsCohere/cohere.svg +93 -0
- package/dist/nodes/embeddings/EmbeddingsGooglePalm/EmbeddingsGooglePalm.node.d.ts +5 -0
- package/dist/nodes/embeddings/EmbeddingsGooglePalm/EmbeddingsGooglePalm.node.js +121 -0
- package/dist/nodes/embeddings/EmbeddingsGooglePalm/EmbeddingsGooglePalm.node.js.map +1 -0
- package/dist/nodes/embeddings/EmbeddingsGooglePalm/google.svg +1 -0
- package/dist/nodes/embeddings/EmbeddingsHuggingFaceInference/EmbeddingsHuggingFaceInference.node.d.ts +5 -0
- package/dist/nodes/embeddings/EmbeddingsHuggingFaceInference/EmbeddingsHuggingFaceInference.node.js +71 -0
- package/dist/nodes/embeddings/EmbeddingsHuggingFaceInference/EmbeddingsHuggingFaceInference.node.js.map +1 -0
- package/dist/nodes/embeddings/EmbeddingsHuggingFaceInference/huggingface.svg +8 -0
- package/dist/nodes/embeddings/EmbeddingsOpenAI/EmbeddingsOpenAi.node.d.ts +5 -0
- package/dist/nodes/embeddings/EmbeddingsOpenAI/EmbeddingsOpenAi.node.js +94 -0
- package/dist/nodes/embeddings/EmbeddingsOpenAI/EmbeddingsOpenAi.node.js.map +1 -0
- package/dist/nodes/embeddings/EmbeddingsOpenAI/openAi.svg +7 -0
- package/dist/nodes/embeddings/EmbeddingsTensorFlow/EmbeddingsTensorFlow.node.d.ts +6 -0
- package/dist/nodes/embeddings/EmbeddingsTensorFlow/EmbeddingsTensorFlow.node.js +54 -0
- package/dist/nodes/embeddings/EmbeddingsTensorFlow/EmbeddingsTensorFlow.node.js.map +1 -0
- package/dist/nodes/embeddings/EmbeddingsTensorFlow/tensorflow.svg +49 -0
- package/dist/nodes/llms/LMChatAnthropic/LmChatAnthropic.node.d.ts +5 -0
- package/dist/nodes/llms/LMChatAnthropic/LmChatAnthropic.node.js +118 -0
- package/dist/nodes/llms/LMChatAnthropic/LmChatAnthropic.node.js.map +1 -0
- package/dist/nodes/llms/LMChatAnthropic/anthropic.png +0 -0
- package/dist/nodes/llms/LMChatAnthropic/anthropic.svg +1 -0
- package/dist/nodes/llms/LMChatOllama/LmChatOllama.node.d.ts +5 -0
- package/dist/nodes/llms/LMChatOllama/LmChatOllama.node.js +119 -0
- package/dist/nodes/llms/LMChatOllama/LmChatOllama.node.js.map +1 -0
- package/dist/nodes/llms/LMChatOllama/ollama.svg +43 -0
- package/dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.d.ts +5 -0
- package/dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.js +175 -0
- package/dist/nodes/llms/LMChatOpenAi/LmChatOpenAi.node.js.map +1 -0
- package/dist/nodes/llms/LMChatOpenAi/openAi.svg +7 -0
- package/dist/nodes/llms/LMCohere/LmCohere.node.d.ts +5 -0
- package/dist/nodes/llms/LMCohere/LmCohere.node.js +93 -0
- package/dist/nodes/llms/LMCohere/LmCohere.node.js.map +1 -0
- package/dist/nodes/llms/LMCohere/cohere.svg +93 -0
- package/dist/nodes/llms/LMOllama/LmOllama.node.d.ts +5 -0
- package/dist/nodes/llms/LMOllama/LmOllama.node.js +119 -0
- package/dist/nodes/llms/LMOllama/LmOllama.node.js.map +1 -0
- package/dist/nodes/llms/LMOllama/ollama.svg +43 -0
- package/dist/nodes/llms/LMOpenAi/LmOpenAi.node.d.ts +5 -0
- package/dist/nodes/llms/LMOpenAi/LmOpenAi.node.js +175 -0
- package/dist/nodes/llms/LMOpenAi/LmOpenAi.node.js.map +1 -0
- package/dist/nodes/llms/LMOpenAi/openAi.svg +7 -0
- package/dist/nodes/llms/LMOpenHuggingFaceInference/LmOpenHuggingFaceInference.node.d.ts +5 -0
- package/dist/nodes/llms/LMOpenHuggingFaceInference/LmOpenHuggingFaceInference.node.js +126 -0
- package/dist/nodes/llms/LMOpenHuggingFaceInference/LmOpenHuggingFaceInference.node.js.map +1 -0
- package/dist/nodes/llms/LMOpenHuggingFaceInference/huggingface.svg +8 -0
- package/dist/nodes/llms/LmChatGooglePalm/LmChatGooglePalm.node.d.ts +5 -0
- package/dist/nodes/llms/LmChatGooglePalm/LmChatGooglePalm.node.js +150 -0
- package/dist/nodes/llms/LmChatGooglePalm/LmChatGooglePalm.node.js.map +1 -0
- package/dist/nodes/llms/LmChatGooglePalm/google.svg +1 -0
- package/dist/nodes/llms/LmGooglePalm/LmGooglePalm.node.d.ts +5 -0
- package/dist/nodes/llms/LmGooglePalm/LmGooglePalm.node.js +157 -0
- package/dist/nodes/llms/LmGooglePalm/LmGooglePalm.node.js.map +1 -0
- package/dist/nodes/llms/LmGooglePalm/google.svg +1 -0
- package/dist/nodes/memory/MemoryBufferWindow/MemoryBufferWindow.node.d.ts +5 -0
- package/dist/nodes/memory/MemoryBufferWindow/MemoryBufferWindow.node.js +108 -0
- package/dist/nodes/memory/MemoryBufferWindow/MemoryBufferWindow.node.js.map +1 -0
- package/dist/nodes/memory/MemoryChatRetriever/MemoryChatRetriever.node.d.ts +5 -0
- package/dist/nodes/memory/MemoryChatRetriever/MemoryChatRetriever.node.js +85 -0
- package/dist/nodes/memory/MemoryChatRetriever/MemoryChatRetriever.node.js.map +1 -0
- package/dist/nodes/memory/MemoryMotorhead/MemoryMotorhead.node.d.ts +5 -0
- package/dist/nodes/memory/MemoryMotorhead/MemoryMotorhead.node.js +70 -0
- package/dist/nodes/memory/MemoryMotorhead/MemoryMotorhead.node.js.map +1 -0
- package/dist/nodes/memory/MemoryRedisChat/MemoryRedisChat.node.d.ts +5 -0
- package/dist/nodes/memory/MemoryRedisChat/MemoryRedisChat.node.js +103 -0
- package/dist/nodes/memory/MemoryRedisChat/MemoryRedisChat.node.js.map +1 -0
- package/dist/nodes/memory/MemoryRedisChat/redis.svg +1 -0
- package/dist/nodes/memory/MemoryXata/MemoryXata.node.d.ts +5 -0
- package/dist/nodes/memory/MemoryXata/MemoryXata.node.js +84 -0
- package/dist/nodes/memory/MemoryXata/MemoryXata.node.js.map +1 -0
- package/dist/nodes/memory/MemoryXata/xata.svg +1 -0
- package/dist/nodes/memory/MemoryZep/MemoryZep.node.d.ts +5 -0
- package/dist/nodes/memory/MemoryZep/MemoryZep.node.js +70 -0
- package/dist/nodes/memory/MemoryZep/MemoryZep.node.js.map +1 -0
- package/dist/nodes/memory/MemoryZep/zep.png +0 -0
- package/dist/nodes/output_parser/OutputParserAutofixing/OutputParserAutofixing.node.d.ts +5 -0
- package/dist/nodes/output_parser/OutputParserAutofixing/OutputParserAutofixing.node.js +60 -0
- package/dist/nodes/output_parser/OutputParserAutofixing/OutputParserAutofixing.node.js.map +1 -0
- package/dist/nodes/output_parser/OutputParserItemList/ItemListOutputParser.d.ts +12 -0
- package/dist/nodes/output_parser/OutputParserItemList/ItemListOutputParser.js +40 -0
- package/dist/nodes/output_parser/OutputParserItemList/ItemListOutputParser.js.map +1 -0
- package/dist/nodes/output_parser/OutputParserItemList/OutputParserItemList.node.d.ts +5 -0
- package/dist/nodes/output_parser/OutputParserItemList/OutputParserItemList.node.js +71 -0
- package/dist/nodes/output_parser/OutputParserItemList/OutputParserItemList.node.js.map +1 -0
- package/dist/nodes/output_parser/OutputParserStructured/OutputParserStructured.node.d.ts +5 -0
- package/dist/nodes/output_parser/OutputParserStructured/OutputParserStructured.node.js +97 -0
- package/dist/nodes/output_parser/OutputParserStructured/OutputParserStructured.node.js.map +1 -0
- package/dist/nodes/retrievers/RetrieverContextualCompression/RetrieverContextualCompression.node.d.ts +5 -0
- package/dist/nodes/retrievers/RetrieverContextualCompression/RetrieverContextualCompression.node.js +71 -0
- package/dist/nodes/retrievers/RetrieverContextualCompression/RetrieverContextualCompression.node.js.map +1 -0
- package/dist/nodes/retrievers/RetrieverVectorStore/RetrieverVectorStore.node.d.ts +5 -0
- package/dist/nodes/retrievers/RetrieverVectorStore/RetrieverVectorStore.node.js +62 -0
- package/dist/nodes/retrievers/RetrieverVectorStore/RetrieverVectorStore.node.js.map +1 -0
- package/dist/nodes/text_splitters/TextSplitterCharacterTextSplitter/TextSplitterCharacterTextSplitter.node.d.ts +5 -0
- package/dist/nodes/text_splitters/TextSplitterCharacterTextSplitter/TextSplitterCharacterTextSplitter.node.js +75 -0
- package/dist/nodes/text_splitters/TextSplitterCharacterTextSplitter/TextSplitterCharacterTextSplitter.node.js.map +1 -0
- package/dist/nodes/text_splitters/TextSplitterRecursiveCharacterTextSplitter/TextSplitterRecursiveCharacterTextSplitter.node.d.ts +5 -0
- package/dist/nodes/text_splitters/TextSplitterRecursiveCharacterTextSplitter/TextSplitterRecursiveCharacterTextSplitter.node.js +67 -0
- package/dist/nodes/text_splitters/TextSplitterRecursiveCharacterTextSplitter/TextSplitterRecursiveCharacterTextSplitter.node.js.map +1 -0
- package/dist/nodes/text_splitters/TextSplitterTokenSplitter/TextSplitterTokenSplitter.node.d.ts +5 -0
- package/dist/nodes/text_splitters/TextSplitterTokenSplitter/TextSplitterTokenSplitter.node.js +69 -0
- package/dist/nodes/text_splitters/TextSplitterTokenSplitter/TextSplitterTokenSplitter.node.js.map +1 -0
- package/dist/nodes/tools/ToolCalculator/ToolCalculator.node.d.ts +5 -0
- package/dist/nodes/tools/ToolCalculator/ToolCalculator.node.js +44 -0
- package/dist/nodes/tools/ToolCalculator/ToolCalculator.node.js.map +1 -0
- package/dist/nodes/tools/ToolCode/ToolCode.node.d.ts +5 -0
- package/dist/nodes/tools/ToolCode/ToolCode.node.js +179 -0
- package/dist/nodes/tools/ToolCode/ToolCode.node.js.map +1 -0
- package/dist/nodes/tools/ToolSerpApi/ToolSerpApi.node.d.ts +5 -0
- package/dist/nodes/tools/ToolSerpApi/ToolSerpApi.node.js +112 -0
- package/dist/nodes/tools/ToolSerpApi/ToolSerpApi.node.js.map +1 -0
- package/dist/nodes/tools/ToolSerpApi/serpApi.svg +13 -0
- package/dist/nodes/tools/ToolWikipedia/ToolWikipedia.node.d.ts +5 -0
- package/dist/nodes/tools/ToolWikipedia/ToolWikipedia.node.js +44 -0
- package/dist/nodes/tools/ToolWikipedia/ToolWikipedia.node.js.map +1 -0
- package/dist/nodes/tools/ToolWikipedia/wikipedia.svg +41 -0
- package/dist/nodes/tools/ToolWolframAlpha/ToolWolframAlpha.node.d.ts +5 -0
- package/dist/nodes/tools/ToolWolframAlpha/ToolWolframAlpha.node.js +51 -0
- package/dist/nodes/tools/ToolWolframAlpha/ToolWolframAlpha.node.js.map +1 -0
- package/dist/nodes/tools/ToolWolframAlpha/wolfram-alpha.svg +23 -0
- package/dist/nodes/tools/ToolWorkflow/ToolWorkflow.node.d.ts +5 -0
- package/dist/nodes/tools/ToolWorkflow/ToolWorkflow.node.js +355 -0
- package/dist/nodes/tools/ToolWorkflow/ToolWorkflow.node.js.map +1 -0
- package/dist/nodes/trigger/ManualChatTrigger/ManualChatTrigger.node.d.ts +5 -0
- package/dist/nodes/trigger/ManualChatTrigger/ManualChatTrigger.node.js +63 -0
- package/dist/nodes/trigger/ManualChatTrigger/ManualChatTrigger.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStoreInMemory/VectorStoreInMemory.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStoreInMemory/VectorStoreInMemory.node.js +66 -0
- package/dist/nodes/vector_store/VectorStoreInMemory/VectorStoreInMemory.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStorePineconeInsert/VectorStorePineconeInsert.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStorePineconeInsert/VectorStorePineconeInsert.node.js +122 -0
- package/dist/nodes/vector_store/VectorStorePineconeInsert/VectorStorePineconeInsert.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStorePineconeInsert/pinecone.svg +1 -0
- package/dist/nodes/vector_store/VectorStorePineconeLoad/VectorStorePineconeLoad.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStorePineconeLoad/VectorStorePineconeLoad.node.js +87 -0
- package/dist/nodes/vector_store/VectorStorePineconeLoad/VectorStorePineconeLoad.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStorePineconeLoad/pinecone.svg +1 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseInsert/VectorStoreSupabaseInsert.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseInsert/VectorStoreSupabaseInsert.node.js +115 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseInsert/VectorStoreSupabaseInsert.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseInsert/supabase.svg +15 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseLoad/VectorStoreSupabaseLoad.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseLoad/VectorStoreSupabaseLoad.node.js +107 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseLoad/VectorStoreSupabaseLoad.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStoreSupabaseLoad/supabase.svg +15 -0
- package/dist/nodes/vector_store/VectorStoreZepInsert/VectorStoreZepInsert.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStoreZepInsert/VectorStoreZepInsert.node.js +124 -0
- package/dist/nodes/vector_store/VectorStoreZepInsert/VectorStoreZepInsert.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStoreZepInsert/zep.png +0 -0
- package/dist/nodes/vector_store/VectorStoreZepLoad/VectorStoreZepLoad.node.d.ts +5 -0
- package/dist/nodes/vector_store/VectorStoreZepLoad/VectorStoreZepLoad.node.js +93 -0
- package/dist/nodes/vector_store/VectorStoreZepLoad/VectorStoreZepLoad.node.js.map +1 -0
- package/dist/nodes/vector_store/VectorStoreZepLoad/zep.png +0 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/EpubLoader.d.ts +16 -0
- package/dist/utils/EpubLoader.js +53 -0
- package/dist/utils/EpubLoader.js.map +1 -0
- package/dist/utils/N8nBinaryLoader.d.ts +7 -0
- package/dist/utils/N8nBinaryLoader.js +92 -0
- package/dist/utils/N8nBinaryLoader.js.map +1 -0
- package/dist/utils/N8nJsonLoader.d.ts +7 -0
- package/dist/utils/N8nJsonLoader.js +30 -0
- package/dist/utils/N8nJsonLoader.js.map +1 -0
- package/dist/utils/logWrapper.d.ts +31 -0
- package/dist/utils/logWrapper.js +321 -0
- package/dist/utils/logWrapper.js.map +1 -0
- package/index.js +0 -0
- package/package.json +135 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LmChatOllama = void 0;
|
|
4
|
+
const ollama_1 = require("langchain/chat_models/ollama");
|
|
5
|
+
const logWrapper_1 = require("../../../utils/logWrapper");
|
|
6
|
+
class LmChatOllama {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.description = {
|
|
9
|
+
displayName: 'Ollama Chat Model',
|
|
10
|
+
name: 'lmChatOllama',
|
|
11
|
+
icon: 'file:ollama.svg',
|
|
12
|
+
group: ['transform'],
|
|
13
|
+
version: 1,
|
|
14
|
+
description: 'Language Model Ollama',
|
|
15
|
+
defaults: {
|
|
16
|
+
name: 'Ollama Chat Model',
|
|
17
|
+
},
|
|
18
|
+
codex: {
|
|
19
|
+
categories: ['AI'],
|
|
20
|
+
subcategories: {
|
|
21
|
+
AI: ['Language Models'],
|
|
22
|
+
},
|
|
23
|
+
resources: {
|
|
24
|
+
primaryDocumentation: [
|
|
25
|
+
{
|
|
26
|
+
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama/',
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
inputs: [],
|
|
32
|
+
outputs: ["ai_languageModel"],
|
|
33
|
+
outputNames: ['Model'],
|
|
34
|
+
credentials: [
|
|
35
|
+
{
|
|
36
|
+
name: 'ollamaApi',
|
|
37
|
+
required: true,
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
properties: [
|
|
41
|
+
{
|
|
42
|
+
displayName: 'Model',
|
|
43
|
+
name: 'model',
|
|
44
|
+
type: 'options',
|
|
45
|
+
options: [
|
|
46
|
+
{
|
|
47
|
+
name: 'Llama2',
|
|
48
|
+
value: 'llama2',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'Llama2 13B',
|
|
52
|
+
value: 'llama2:13b',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: 'Llama2 70B',
|
|
56
|
+
value: 'llama2:70b',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'Llama2 Uncensored',
|
|
60
|
+
value: 'llama2-uncensored',
|
|
61
|
+
},
|
|
62
|
+
],
|
|
63
|
+
description: 'The model which will generate the completion',
|
|
64
|
+
default: 'llama2',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
displayName: 'Options',
|
|
68
|
+
name: 'options',
|
|
69
|
+
placeholder: 'Add Option',
|
|
70
|
+
description: 'Additional options to add',
|
|
71
|
+
type: 'collection',
|
|
72
|
+
default: {},
|
|
73
|
+
options: [
|
|
74
|
+
{
|
|
75
|
+
displayName: 'Sampling Temperature',
|
|
76
|
+
name: 'temperature',
|
|
77
|
+
default: 0.7,
|
|
78
|
+
typeOptions: { maxValue: 1, minValue: 0, numberPrecision: 1 },
|
|
79
|
+
description: 'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.',
|
|
80
|
+
type: 'number',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
displayName: 'Top K',
|
|
84
|
+
name: 'topK',
|
|
85
|
+
default: -1,
|
|
86
|
+
typeOptions: { maxValue: 1, minValue: -1, numberPrecision: 1 },
|
|
87
|
+
description: 'Used to remove "long tail" low probability responses. Defaults to -1, which disables it.',
|
|
88
|
+
type: 'number',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
displayName: 'Top P',
|
|
92
|
+
name: 'topP',
|
|
93
|
+
default: 1,
|
|
94
|
+
typeOptions: { maxValue: 1, minValue: 0, numberPrecision: 1 },
|
|
95
|
+
description: 'Controls diversity via nucleus sampling: 0.5 means half of all likelihood-weighted options are considered. We generally recommend altering this or temperature but not both.',
|
|
96
|
+
type: 'number',
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
async supplyData() {
|
|
104
|
+
const credentials = await this.getCredentials('ollamaApi');
|
|
105
|
+
const itemIndex = 0;
|
|
106
|
+
const modelName = this.getNodeParameter('model', itemIndex);
|
|
107
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
108
|
+
const model = new ollama_1.ChatOllama({
|
|
109
|
+
baseUrl: credentials.baseUrl,
|
|
110
|
+
model: modelName,
|
|
111
|
+
...options,
|
|
112
|
+
});
|
|
113
|
+
return {
|
|
114
|
+
response: (0, logWrapper_1.logWrapper)(model, this),
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
exports.LmChatOllama = LmChatOllama;
|
|
119
|
+
//# sourceMappingURL=LmChatOllama.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LmChatOllama.node.js","sourceRoot":"","sources":["../../../../nodes/llms/LMChatOllama/LmChatOllama.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="181.000000pt" height="256.000000pt" viewBox="0 0 181.000000 256.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
|
|
8
|
+
<g transform="translate(0.000000,256.000000) scale(0.100000,-0.100000)"
|
|
9
|
+
fill="#7D7D87" stroke="none">
|
|
10
|
+
<path d="M377 2365 c-52 -18 -83 -49 -117 -116 -45 -89 -62 -192 -58 -355 l3
|
|
11
|
+
-142 -58 -61 c-148 -155 -185 -387 -92 -574 l34 -69 -20 -44 c-34 -82 -50
|
|
12
|
+
-164 -50 -263 0 -108 18 -190 58 -262 l26 -48 -21 -49 c-12 -27 -26 -71 -32
|
|
13
|
+
-98 -14 -62 -15 -221 -1 -257 10 -26 14 -27 76 -27 73 0 70 -4 53 86 -15 82 2
|
|
14
|
+
188 42 266 37 70 38 104 5 148 -47 64 -68 136 -69 240 -1 103 14 160 66 261
|
|
15
|
+
31 61 29 87 -10 122 -11 10 -31 42 -43 70 -19 42 -24 69 -23 142 0 114 25 183
|
|
16
|
+
95 260 70 76 142 110 239 112 41 0 78 2 82 2 4 1 17 22 29 47 30 59 96 119
|
|
17
|
+
167 152 49 23 70 27 147 27 79 0 97 -4 149 -29 68 -33 133 -94 159 -148 10
|
|
18
|
+
-20 23 -41 30 -45 6 -4 46 -8 87 -8 67 -1 83 -5 140 -36 123 -68 193 -187 193
|
|
19
|
+
-334 1 -67 -4 -90 -27 -142 -16 -35 -35 -68 -43 -75 -34 -28 -35 -58 -5 -117
|
|
20
|
+
52 -101 67 -158 66 -261 -1 -104 -22 -176 -69 -240 -33 -44 -32 -78 5 -148 40
|
|
21
|
+
-78 57 -184 42 -266 -17 -90 -20 -86 53 -86 62 0 66 1 76 27 14 36 13 195 -1
|
|
22
|
+
257 -6 27 -20 71 -32 98 l-21 49 26 48 c76 139 79 359 6 528 l-20 47 25 46
|
|
23
|
+
c99 183 64 439 -81 591 l-58 61 3 142 c4 164 -13 266 -58 357 -64 126 -172
|
|
24
|
+
159 -263 79 -54 -47 -92 -138 -123 -298 -3 -14 -10 -22 -17 -18 -182 80 -297
|
|
25
|
+
85 -443 21 l-54 -24 -4 22 c-36 185 -85 285 -156 322 -43 21 -74 24 -113 10z
|
|
26
|
+
m77 -168 c42 -71 81 -301 57 -336 -5 -8 -31 -16 -58 -18 -26 -2 -62 -8 -80
|
|
27
|
+
-13 l-31 -8 -7 49 c-8 59 2 172 22 248 14 57 48 121 63 121 5 0 20 -19 34 -43z
|
|
28
|
+
m965 10 c40 -65 69 -239 56 -336 l-7 -49 -31 8 c-18 5 -54 11 -80 13 -27 2
|
|
29
|
+
-53 10 -58 18 -12 17 -3 141 17 229 15 64 57 150 74 150 4 0 18 -15 29 -33z"/>
|
|
30
|
+
<path d="M778 1361 c-73 -24 -116 -51 -165 -104 -55 -60 -76 -120 -71 -201 5
|
|
31
|
+
-76 35 -129 106 -183 62 -47 127 -63 257 -63 172 0 258 36 329 138 42 59 48
|
|
32
|
+
155 16 230 -29 68 -111 143 -188 173 -80 31 -207 36 -284 10z m257 -100 c161
|
|
33
|
+
-71 194 -232 66 -318 -49 -33 -94 -43 -196 -43 -102 0 -147 10 -196 43 -178
|
|
34
|
+
120 -32 356 211 343 39 -2 86 -12 115 -25z"/>
|
|
35
|
+
<path d="M838 1159 c-25 -14 -22 -44 7 -67 20 -16 24 -26 19 -49 -7 -36 15
|
|
36
|
+
-58 51 -49 21 5 25 12 25 46 0 29 5 42 20 50 27 15 27 66 0 75 -10 3 -28 1
|
|
37
|
+
-40 -5 -14 -7 -26 -8 -39 0 -23 12 -22 12 -43 -1z"/>
|
|
38
|
+
<path d="M397 1348 c-9 -7 -23 -30 -32 -50 -21 -53 -1 -103 47 -116 43 -11 60
|
|
39
|
+
-6 92 27 40 41 43 81 11 119 -21 25 -34 32 -64 32 -20 0 -45 -6 -54 -12z"/>
|
|
40
|
+
<path d="M1295 1328 c-32 -38 -29 -78 11 -119 32 -33 49 -38 92 -27 49 13 68
|
|
41
|
+
62 46 118 -19 47 -38 60 -87 60 -27 0 -41 -7 -62 -32z"/>
|
|
42
|
+
</g>
|
|
43
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type IExecuteFunctions, type INodeType, type INodeTypeDescription, type SupplyData } from 'n8n-workflow';
|
|
2
|
+
export declare class LmChatOpenAi implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
supplyData(this: IExecuteFunctions): Promise<SupplyData>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LmChatOpenAi = void 0;
|
|
4
|
+
const openai_1 = require("langchain/chat_models/openai");
|
|
5
|
+
const logWrapper_1 = require("../../../utils/logWrapper");
|
|
6
|
+
class LmChatOpenAi {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.description = {
|
|
9
|
+
displayName: 'OpenAI Chat Model',
|
|
10
|
+
name: 'lmChatOpenAi',
|
|
11
|
+
icon: 'file:openAi.svg',
|
|
12
|
+
group: ['transform'],
|
|
13
|
+
version: 1,
|
|
14
|
+
description: 'For advanced usage with an AI chain',
|
|
15
|
+
defaults: {
|
|
16
|
+
name: 'OpenAI Chat Model',
|
|
17
|
+
},
|
|
18
|
+
codex: {
|
|
19
|
+
categories: ['AI'],
|
|
20
|
+
subcategories: {
|
|
21
|
+
AI: ['Language Models'],
|
|
22
|
+
},
|
|
23
|
+
resources: {
|
|
24
|
+
primaryDocumentation: [
|
|
25
|
+
{
|
|
26
|
+
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/',
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
inputs: [],
|
|
32
|
+
outputs: ["ai_languageModel"],
|
|
33
|
+
outputNames: ['Model'],
|
|
34
|
+
credentials: [
|
|
35
|
+
{
|
|
36
|
+
name: 'openAiApi',
|
|
37
|
+
required: true,
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
requestDefaults: {
|
|
41
|
+
ignoreHttpStatusErrors: true,
|
|
42
|
+
baseURL: 'https://api.openai.com',
|
|
43
|
+
},
|
|
44
|
+
properties: [
|
|
45
|
+
{
|
|
46
|
+
displayName: 'Model',
|
|
47
|
+
name: 'model',
|
|
48
|
+
type: 'options',
|
|
49
|
+
description: 'The model which will generate the completion. <a href="https://beta.openai.com/docs/models/overview">Learn more</a>.',
|
|
50
|
+
typeOptions: {
|
|
51
|
+
loadOptions: {
|
|
52
|
+
routing: {
|
|
53
|
+
request: {
|
|
54
|
+
method: 'GET',
|
|
55
|
+
url: '/v1/models',
|
|
56
|
+
},
|
|
57
|
+
output: {
|
|
58
|
+
postReceive: [
|
|
59
|
+
{
|
|
60
|
+
type: 'rootProperty',
|
|
61
|
+
properties: {
|
|
62
|
+
property: 'data',
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'filter',
|
|
67
|
+
properties: {
|
|
68
|
+
pass: "={{ $responseItem.id.startsWith('gpt-') && !$responseItem.id.includes('instruct') }}",
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
type: 'setKeyValue',
|
|
73
|
+
properties: {
|
|
74
|
+
name: '={{$responseItem.id}}',
|
|
75
|
+
value: '={{$responseItem.id}}',
|
|
76
|
+
},
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
type: 'sort',
|
|
80
|
+
properties: {
|
|
81
|
+
key: 'name',
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
routing: {
|
|
90
|
+
send: {
|
|
91
|
+
type: 'body',
|
|
92
|
+
property: 'model',
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
default: 'gpt-3.5-turbo',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
displayName: 'Options',
|
|
99
|
+
name: 'options',
|
|
100
|
+
placeholder: 'Add Option',
|
|
101
|
+
description: 'Additional options to add',
|
|
102
|
+
type: 'collection',
|
|
103
|
+
default: {},
|
|
104
|
+
options: [
|
|
105
|
+
{
|
|
106
|
+
displayName: 'Frequency Penalty',
|
|
107
|
+
name: 'frequencyPenalty',
|
|
108
|
+
default: 0,
|
|
109
|
+
typeOptions: { maxValue: 2, minValue: -2, numberPrecision: 1 },
|
|
110
|
+
description: "Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim",
|
|
111
|
+
type: 'number',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
displayName: 'Maximum Number of Tokens',
|
|
115
|
+
name: 'maxTokens',
|
|
116
|
+
default: -1,
|
|
117
|
+
description: 'The maximum number of tokens to generate in the completion. Most models have a context length of 2048 tokens (except for the newest models, which support 32,768).',
|
|
118
|
+
type: 'number',
|
|
119
|
+
typeOptions: {
|
|
120
|
+
maxValue: 32768,
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
displayName: 'Presence Penalty',
|
|
125
|
+
name: 'presencePenalty',
|
|
126
|
+
default: 0,
|
|
127
|
+
typeOptions: { maxValue: 2, minValue: -2, numberPrecision: 1 },
|
|
128
|
+
description: "Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics",
|
|
129
|
+
type: 'number',
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
displayName: 'Sampling Temperature',
|
|
133
|
+
name: 'temperature',
|
|
134
|
+
default: 0.7,
|
|
135
|
+
typeOptions: { maxValue: 1, minValue: 0, numberPrecision: 1 },
|
|
136
|
+
description: 'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.',
|
|
137
|
+
type: 'number',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
displayName: 'Timeout',
|
|
141
|
+
name: 'timeout',
|
|
142
|
+
default: 0,
|
|
143
|
+
description: 'Maximum amount of time a request is allowed to take in seconds',
|
|
144
|
+
type: 'number',
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
displayName: 'Top P',
|
|
148
|
+
name: 'topP',
|
|
149
|
+
default: 1,
|
|
150
|
+
typeOptions: { maxValue: 1, minValue: 0, numberPrecision: 1 },
|
|
151
|
+
description: 'Controls diversity via nucleus sampling: 0.5 means half of all likelihood-weighted options are considered. We generally recommend altering this or temperature but not both.',
|
|
152
|
+
type: 'number',
|
|
153
|
+
},
|
|
154
|
+
],
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
async supplyData() {
|
|
160
|
+
const credentials = await this.getCredentials('openAiApi');
|
|
161
|
+
const itemIndex = 0;
|
|
162
|
+
const modelName = this.getNodeParameter('model', itemIndex);
|
|
163
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
164
|
+
const model = new openai_1.ChatOpenAI({
|
|
165
|
+
openAIApiKey: credentials.apiKey,
|
|
166
|
+
modelName,
|
|
167
|
+
...options,
|
|
168
|
+
});
|
|
169
|
+
return {
|
|
170
|
+
response: (0, logWrapper_1.logWrapper)(model, this),
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
exports.LmChatOpenAi = LmChatOpenAi;
|
|
175
|
+
//# sourceMappingURL=LmChatOpenAi.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LmChatOpenAi.node.js","sourceRoot":"","sources":["../../../../nodes/llms/LMChatOpenAi/LmChatOpenAi.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="256px" height="260px" viewBox="0 0 256 260" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>OpenAI</title>
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M239.183914,106.202783 C245.054304,88.5242096 243.02228,69.1733805 233.607599,53.0998864 C219.451678,28.4588021 190.999703,15.7836129 163.213007,21.739505 C147.554077,4.32145883 123.794909,-3.42398554 100.87901,1.41873898 C77.9631105,6.26146349 59.3690093,22.9572536 52.0959621,45.2214219 C33.8436494,48.9644867 18.0901721,60.392749 8.86672513,76.5818033 C-5.443491,101.182962 -2.19544431,132.215255 16.8986662,153.320094 C11.0060865,170.990656 13.0197283,190.343991 22.4238231,206.422991 C36.5975553,231.072344 65.0680342,243.746566 92.8695738,237.783372 C105.235639,251.708249 123.001113,259.630942 141.623968,259.52692 C170.105359,259.552169 195.337611,241.165718 204.037777,214.045661 C222.28734,210.296356 238.038489,198.869783 247.267014,182.68528 C261.404453,158.127515 258.142494,127.262775 239.183914,106.202783 L239.183914,106.202783 Z M141.623968,242.541207 C130.255682,242.559177 119.243876,238.574642 110.519381,231.286197 L112.054146,230.416496 L163.724595,200.590881 C166.340648,199.056444 167.954321,196.256818 167.970781,193.224005 L167.970781,120.373788 L189.815614,133.010026 C190.034132,133.121423 190.186235,133.330564 190.224885,133.572774 L190.224885,193.940229 C190.168603,220.758427 168.442166,242.484864 141.623968,242.541207 Z M37.1575749,197.93062 C31.456498,188.086359 29.4094818,176.546984 31.3766237,165.342426 L32.9113895,166.263285 L84.6329973,196.088901 C87.2389349,197.618207 90.4682717,197.618207 93.0742093,196.088901 L156.255402,159.663793 L156.255402,184.885111 C156.243557,185.149771 156.111725,185.394602 155.89729,185.550176 L103.561776,215.733903 C80.3054953,229.131632 50.5924954,221.165435 37.1575749,197.93062 Z M23.5493181,85.3811273 C29.2899861,75.4733097 38.3511911,67.9162648 49.1287482,64.0478825 L49.1287482,125.438515 C49.0891492,128.459425 50.6965386,131.262556 53.3237748,132.754232 L116.198014,169.025864 L94.3531808,181.662102 C94.1132325,181.789434 93.8257461,181.789434 93.5857979,181.662102 L41.3526015,151.529534 C18.1419426,138.076098 10.1817681,108.385562 23.5493181,85.125333 L23.5493181,85.3811273 Z M203.0146,127.075598 L139.935725,90.4458545 L161.7294,77.8607748 C161.969348,77.7334434 162.256834,77.7334434 162.496783,77.8607748 L214.729979,108.044502 C231.032329,117.451747 240.437294,135.426109 238.871504,154.182739 C237.305714,172.939368 225.050719,189.105572 207.414262,195.67963 L207.414262,134.288998 C207.322521,131.276867 205.650697,128.535853 203.0146,127.075598 Z M224.757116,94.3850867 L223.22235,93.4642272 L171.60306,63.3828173 C168.981293,61.8443751 165.732456,61.8443751 163.110689,63.3828173 L99.9806554,99.8079259 L99.9806554,74.5866077 C99.9533004,74.3254088 100.071095,74.0701869 100.287609,73.9215426 L152.520805,43.7889738 C168.863098,34.3743518 189.174256,35.2529043 204.642579,46.0434841 C220.110903,56.8340638 227.949269,75.5923959 224.757116,94.1804513 L224.757116,94.3850867 Z M88.0606409,139.097931 L66.2158076,126.512851 C65.9950399,126.379091 65.8450965,126.154176 65.8065367,125.898945 L65.8065367,65.684966 C65.8314495,46.8285367 76.7500605,29.6846032 93.8270852,21.6883055 C110.90411,13.6920079 131.063833,16.2835462 145.5632,28.338998 L144.028434,29.2086986 L92.3579852,59.0343142 C89.7419327,60.5687513 88.1282597,63.3683767 88.1117998,66.4011901 L88.0606409,139.097931 Z M99.9294965,113.5185 L128.06687,97.3011417 L156.255402,113.5185 L156.255402,145.953218 L128.169187,162.170577 L99.9806554,145.953218 L99.9294965,113.5185 Z" fill="#7D7D87"></path>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LmCohere = void 0;
|
|
4
|
+
const cohere_1 = require("langchain/llms/cohere");
|
|
5
|
+
const logWrapper_1 = require("../../../utils/logWrapper");
|
|
6
|
+
class LmCohere {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.description = {
|
|
9
|
+
displayName: 'Cohere Model',
|
|
10
|
+
name: 'lmCohere',
|
|
11
|
+
icon: 'file:cohere.svg',
|
|
12
|
+
group: ['transform'],
|
|
13
|
+
version: 1,
|
|
14
|
+
description: 'Language Model Cohere',
|
|
15
|
+
defaults: {
|
|
16
|
+
name: 'Cohere Model',
|
|
17
|
+
},
|
|
18
|
+
codex: {
|
|
19
|
+
categories: ['AI'],
|
|
20
|
+
subcategories: {
|
|
21
|
+
AI: ['Language Models'],
|
|
22
|
+
},
|
|
23
|
+
resources: {
|
|
24
|
+
primaryDocumentation: [
|
|
25
|
+
{
|
|
26
|
+
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere/',
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
inputs: [],
|
|
32
|
+
outputs: ["ai_languageModel"],
|
|
33
|
+
outputNames: ['Model'],
|
|
34
|
+
credentials: [
|
|
35
|
+
{
|
|
36
|
+
name: 'cohereApi',
|
|
37
|
+
required: true,
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
properties: [
|
|
41
|
+
{
|
|
42
|
+
displayName: 'Options',
|
|
43
|
+
name: 'options',
|
|
44
|
+
placeholder: 'Add Option',
|
|
45
|
+
description: 'Additional options to add',
|
|
46
|
+
type: 'collection',
|
|
47
|
+
default: {},
|
|
48
|
+
options: [
|
|
49
|
+
{
|
|
50
|
+
displayName: 'Maximum Number of Tokens',
|
|
51
|
+
name: 'maxTokens',
|
|
52
|
+
default: 250,
|
|
53
|
+
description: 'The maximum number of tokens to generate in the completion. Most models have a context length of 2048 tokens (except for the newest models, which support 32,768).',
|
|
54
|
+
type: 'number',
|
|
55
|
+
typeOptions: {
|
|
56
|
+
maxValue: 32768,
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
displayName: 'Model',
|
|
61
|
+
name: 'model',
|
|
62
|
+
type: 'string',
|
|
63
|
+
description: 'The name of the model to use',
|
|
64
|
+
default: '',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
displayName: 'Sampling Temperature',
|
|
68
|
+
name: 'temperature',
|
|
69
|
+
default: 0,
|
|
70
|
+
typeOptions: { maxValue: 1, minValue: 0, numberPrecision: 1 },
|
|
71
|
+
description: 'Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive.',
|
|
72
|
+
type: 'number',
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
async supplyData() {
|
|
80
|
+
const credentials = await this.getCredentials('cohereApi');
|
|
81
|
+
const itemIndex = 0;
|
|
82
|
+
const options = this.getNodeParameter('options', itemIndex, {});
|
|
83
|
+
const model = new cohere_1.Cohere({
|
|
84
|
+
apiKey: credentials.apiKey,
|
|
85
|
+
...options,
|
|
86
|
+
});
|
|
87
|
+
return {
|
|
88
|
+
response: (0, logWrapper_1.logWrapper)(model, this),
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
exports.LmCohere = LmCohere;
|
|
93
|
+
//# sourceMappingURL=LmCohere.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LmCohere.node.js","sourceRoot":"","sources":["../../../../nodes/llms/LMCohere/LmCohere.node.ts"],"names":[],"mappings":";;;AASA,kDAA+C;AAC/C,0DAAuD;AAEvD,MAAa,QAAQ;IAArB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,cAAc;YAE3B,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,iBAAiB;YACvB,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,uBAAuB;YACpC,QAAQ,EAAE;gBACT,IAAI,EAAE,cAAc;aACpB;YACD,KAAK,EAAE;gBACN,UAAU,EAAE,CAAC,IAAI,CAAC;gBAClB,aAAa,EAAE;oBACd,EAAE,EAAE,CAAC,iBAAiB,CAAC;iBACvB;gBACD,SAAS,EAAE;oBACV,oBAAoB,EAAE;wBACrB;4BACC,GAAG,EAAE,gGAAgG;yBACrG;qBACD;iBACD;aACD;YAED,MAAM,EAAE,EAAE;YAEV,OAAO,EAAE,oBAAoC;YAC7C,WAAW,EAAE,CAAC,OAAO,CAAC;YACtB,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,WAAW;oBACjB,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,SAAS;oBACtB,IAAI,EAAE,SAAS;oBACf,WAAW,EAAE,YAAY;oBACzB,WAAW,EAAE,2BAA2B;oBACxC,IAAI,EAAE,YAAY;oBAClB,OAAO,EAAE,EAAE;oBACX,OAAO,EAAE;wBACR;4BACC,WAAW,EAAE,0BAA0B;4BACvC,IAAI,EAAE,WAAW;4BACjB,OAAO,EAAE,GAAG;4BACZ,WAAW,EACV,oKAAoK;4BACrK,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE;gCACZ,QAAQ,EAAE,KAAK;6BACf;yBACD;wBACD;4BACC,WAAW,EAAE,OAAO;4BACpB,IAAI,EAAE,OAAO;4BACb,IAAI,EAAE,QAAQ;4BACd,WAAW,EAAE,8BAA8B;4BAC3C,OAAO,EAAE,EAAE;yBACX;wBACD;4BACC,WAAW,EAAE,sBAAsB;4BACnC,IAAI,EAAE,aAAa;4BACnB,OAAO,EAAE,CAAC;4BACV,WAAW,EAAE,EAAE,QAAQ,EAAE,CAAC,EAAE,QAAQ,EAAE,CAAC,EAAE,eAAe,EAAE,CAAC,EAAE;4BAC7D,WAAW,EACV,2JAA2J;4BAC5J,IAAI,EAAE,QAAQ;yBACd;qBACD;iBACD;aACD;SACD,CAAC;IAkBH,CAAC;IAhBA,KAAK,CAAC,UAAU;QACf,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC;QAE3D,MAAM,SAAS,GAAG,CAAC,CAAC;QAEpB,MAAM,OAAO,GAAG,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,EAAE,CAAW,CAAC;QAE1E,MAAM,KAAK,GAAG,IAAI,eAAM,CAAC;YACxB,MAAM,EAAE,WAAW,CAAC,MAAgB;YACpC,GAAG,OAAO;SACV,CAAC,CAAC;QAEH,OAAO;YACN,QAAQ,EAAE,IAAA,uBAAU,EAAC,KAAK,EAAE,IAAI,CAAC;SACjC,CAAC;IACH,CAAC;CACD;AA7FD,4BA6FC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
viewBox="0 0 1000 166.84006"
|
|
11
|
+
height="166.84006"
|
|
12
|
+
width="1000"
|
|
13
|
+
version="1.1"
|
|
14
|
+
id="svg17"
|
|
15
|
+
sodipodi:docname="f5e234e86f931398d5e05f4cdeb8d6dfcd182c7a-102x18.svg"
|
|
16
|
+
style="fill:none"
|
|
17
|
+
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
|
|
18
|
+
<metadata
|
|
19
|
+
id="metadata21">
|
|
20
|
+
<rdf:RDF>
|
|
21
|
+
<cc:Work
|
|
22
|
+
rdf:about="">
|
|
23
|
+
<dc:format>image/svg+xml</dc:format>
|
|
24
|
+
<dc:type
|
|
25
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
26
|
+
<dc:title></dc:title>
|
|
27
|
+
</cc:Work>
|
|
28
|
+
</rdf:RDF>
|
|
29
|
+
</metadata>
|
|
30
|
+
<sodipodi:namedview
|
|
31
|
+
pagecolor="#ffffff"
|
|
32
|
+
bordercolor="#111111"
|
|
33
|
+
borderopacity="1"
|
|
34
|
+
objecttolerance="10"
|
|
35
|
+
gridtolerance="10"
|
|
36
|
+
guidetolerance="10"
|
|
37
|
+
inkscape:pageopacity="0"
|
|
38
|
+
inkscape:pageshadow="2"
|
|
39
|
+
inkscape:window-width="1920"
|
|
40
|
+
inkscape:window-height="1017"
|
|
41
|
+
id="namedview19"
|
|
42
|
+
showgrid="false"
|
|
43
|
+
fit-margin-top="0"
|
|
44
|
+
fit-margin-left="0"
|
|
45
|
+
fit-margin-right="0"
|
|
46
|
+
fit-margin-bottom="0"
|
|
47
|
+
inkscape:zoom="0.57365771"
|
|
48
|
+
inkscape:cx="572.84853"
|
|
49
|
+
inkscape:cy="17.606572"
|
|
50
|
+
inkscape:window-x="1912"
|
|
51
|
+
inkscape:window-y="-8"
|
|
52
|
+
inkscape:window-maximized="1"
|
|
53
|
+
inkscape:current-layer="svg17" />
|
|
54
|
+
<path
|
|
55
|
+
d="m 281.72414,166.80668 c 24.78262,0 46.47281,-12.39131 55.04741,-37.41044 1.66447,-5.01011 -0.7233,-8.33906 -5.48119,-8.33906 h -9.2979 c -4.28779,0 -7.14566,1.90001 -9.06236,5.95128 -7.3812,14.54453 -17.63695,19.77349 -30.49934,19.77349 -22.88358,0 -36.93937,-15.97346 -36.93937,-42.65609 0,-26.683027 14.54355,-42.655802 36.45161,-42.655802 13.34917,0 24.31252,5.716529 31.22264,19.301823 2.15224,4.052054 4.75789,5.95197 9.06236,5.95197 h 9.2979 c 4.75789,0 7.14566,-3.093705 5.48119,-7.633325 C 327.00257,51.920035 304.59006,41.44523 281.72414,41.44523 c -34.55159,0 -60.29304,25.506014 -60.29304,62.68063 0,37.1749 24.54805,62.68082 60.29304,62.68082 z M 905.35262,93.163386 c 3.09341,-20.260172 16.91464,-32.887118 35.74499,-32.887118 18.83134,0 32.88712,12.862288 34.55159,32.887118 z m 36.70383,73.643294 c 21.92475,0 43.85047,-10.24005 54.57731,-33.35819 2.62037,-5.48119 0.23554,-9.2979 -4.52431,-9.2979 h -8.81308 c -4.28387,0 -6.90718,1.90001 -9.05942,5.71672 -7.14566,12.62685 -19.53697,17.8725 -32.16382,17.8725 -21.6892,0 -35.74499,-14.77909 -37.41044,-38.83938 h 87.46639 c 4.75984,0 7.87092,-2.62234 7.87092,-7.63245 -0.96178,-37.410441 -25.2586,-59.80597 -58.86804,-59.80597 -33.61042,0 -60.29305,24.312325 -60.29305,62.68053 0,38.36831 25.97602,62.68083 61.25091,62.68083 z M 803.36232,107.23595 h 7.86798 c 4.75887,0 7.3812,-2.62233 8.1045,-7.633421 4.54001,-32.197284 23.38803,-36.467996 43.42945,-35.509549 4.2868,0.20168 7.80124,-3.093706 7.80124,-7.397983 V 49.3139 c 0,-4.75818 -2.38778,-7.63333 -7.14566,-7.86867 -17.73804,-0.67256 -33.55939,5.41386 -42.70615,22.64775 -0.50444,0.941468 -1.91669,0.689343 -2.03446,-0.369895 l -1.47997,-12.99684 c -0.4701,-4.758175 -3.09341,-7.145755 -7.86798,-7.145755 h -35.98151 c -4.20339,0 -7.63343,3.41315 -7.63343,7.633321 v 4.052054 c 0,4.203388 3.41335,7.633325 7.63343,7.633325 h 14.77908 c 4.20339,0 7.63342,3.413155 7.63342,7.633325 v 29.070014 c 0,4.203391 3.41335,7.633421 7.63343,7.633421 z m -32.1648,57.19964 h 74.58437 c 4.75887,0 7.63342,-2.85787 7.63342,-7.63342 v -4.05225 c 0,-4.75789 -2.85787,-7.63244 -7.63342,-7.63244 H 826.716 c -4.75789,0 -7.63342,-2.85886 -7.63342,-7.63343 v -13.11461 c 0,-4.75886 -2.85788,-7.63342 -7.63343,-7.63342 h -8.10352 c -4.75886,0 -7.63342,2.85787 -7.63342,7.63342 v 13.11461 c 0,4.75789 -2.85885,7.63343 -7.63342,7.63343 h -16.91464 c -4.75788,0 -7.63342,2.85787 -7.63342,7.63244 v 4.05225 c 0,4.75886 2.85885,7.63342 7.63342,7.63342 z M 656.09261,93.180266 c 3.09439,-20.26027 16.91463,-32.887118 35.74597,-32.887118 18.83035,0 32.88712,12.862289 34.55159,32.887118 z m 36.70383,73.643104 c 21.92474,0 43.84949,-10.23908 54.57632,-33.3582 2.62331,-5.48119 0.23554,-9.2979 -4.52235,-9.2979 h -8.81013 c -4.28779,0 -6.91013,1.90002 -9.06236,5.71673 -7.14566,12.62685 -19.53795,17.87249 -32.1648,17.87249 -21.68921,0 -35.74499,-14.77908 -37.40947,-38.8384 h 87.46345 c 4.75788,0 7.86896,-2.62331 7.86896,-7.63342 -0.95884,-37.410251 -25.2537,-59.80588 -58.86411,-59.80588 -33.61042,0 -60.29305,24.312327 -60.29305,62.68044 0,38.3683 25.97699,62.68082 61.25188,62.68082 z m -275.70711,0 c 35.74597,0 61.25189,-26.44808 61.25189,-62.68083 0,-36.232947 -25.50592,-62.68053 -61.25189,-62.68053 -35.74499,0 -61.25091,26.935148 -61.25091,62.68053 0,8.34004 1.42894,17.63696 5.71574,27.87701 2.15224,5.01011 6.20449,5.71672 10.49228,2.62233 l 6.91012,-5.01011 c 3.58118,-2.62331 4.52235,-5.71672 3.32895,-10.23907 -1.90001,-5.95226 -2.38777,-11.19791 -2.38777,-15.72124 0,-25.018055 15.01462,-42.18462 37.1749,-42.18462 22.16029,0 37.17491,16.914342 37.17491,42.6557 0,25.74146 -14.77908,42.65609 -36.70383,42.65609 -7.63342,0 -14.77908,-1.42893 -23.35466,-7.86896 -3.58117,-2.85787 -6.91012,-3.32895 -10.72683,-0.47108 l -5.24565,3.81672 c -4.28779,3.09439 -4.75789,7.3812 -0.7233,10.72683 12.39229,10.00451 26.68361,13.82123 39.56268,13.82123 z m 91.49901,-2.38778 h 7.86896 c 4.20339,0 7.63342,-3.41335 7.63342,-7.63342 V 99.854752 c 0,-24.059611 12.86141,-38.367912 32.88712,-38.367912 18.10803,0 28.59933,11.920721 28.59933,33.845565 v 61.486445 c 0,4.20339 3.41335,7.63342 7.63342,7.63342 h 8.10352 c 4.20339,0 7.63342,-3.41335 7.63342,-7.63342 V 91.515693 c 0,-32.164111 -16.44356,-50.036903 -44.31958,-50.036903 -18.98248,0 -30.19707,7.76788 -38.57048,18.578918 -0.6389,0.823895 -1.93338,0.369894 -1.93338,-0.655682 V 7.63333 C 524.07309,3.41314 520.66069,0 516.4573,0 h -7.86896 c -4.20339,0 -7.63343,3.41314 -7.63343,7.63333 v 149.16884 c 0,4.20338 3.41336,7.63342 7.63343,7.63342 z"
|
|
56
|
+
id="path2"
|
|
57
|
+
inkscape:connector-curvature="0"
|
|
58
|
+
style="fill:#39594d;stroke-width:9.81412029" />
|
|
59
|
+
<g
|
|
60
|
+
clip-path="url(#clip0_2207_90691)"
|
|
61
|
+
id="g10"
|
|
62
|
+
transform="matrix(9.8141206,0,0,9.8141206,0,-4.90706)">
|
|
63
|
+
<path
|
|
64
|
+
d="m 5.50773,10.6219 c 0.45757,0 1.36777,-0.0251 2.62589,-0.5431 C 9.59973,9.47518 12.5166,8.37942 14.6208,7.2539 16.0924,6.46668 16.7375,5.42553 16.7375,4.02344 16.7375,2.07751 15.16,0.5 13.2141,0.5 H 5.06095 C 2.26586,0.5 0,2.76586 0,5.56095 0,8.35604 2.12151,10.6219 5.50773,10.6219 Z"
|
|
65
|
+
id="path4"
|
|
66
|
+
inkscape:connector-curvature="0"
|
|
67
|
+
style="clip-rule:evenodd;fill:#39594d;fill-rule:evenodd" />
|
|
68
|
+
<path
|
|
69
|
+
d="m 6.88672,14.107 c 0,-1.3701 0.82483,-2.6054 2.09027,-3.1306 L 11.5446,9.9108 c 2.5971,-1.07786 5.4557,0.8307 5.4557,3.6427 0,2.1785 -1.7664,3.9444 -3.945,3.9438 l -2.7799,-7e-4 C 8.40372,17.4961 6.88672,15.9787 6.88672,14.107 Z"
|
|
70
|
+
id="path6"
|
|
71
|
+
inkscape:connector-curvature="0"
|
|
72
|
+
style="clip-rule:evenodd;fill:#d18ee2;fill-rule:evenodd" />
|
|
73
|
+
<path
|
|
74
|
+
d="m 2.91749,11.2891 h -5e-5 C 1.30618,11.2891 0,12.5952 0,14.2065 v 0.3779 c 0,1.6112 1.30618,2.9174 2.91744,2.9174 h 5e-5 c 1.61126,0 2.91744,-1.3062 2.91744,-2.9174 v -0.3779 c 0,-1.6113 -1.30618,-2.9174 -2.91744,-2.9174 z"
|
|
75
|
+
id="path8"
|
|
76
|
+
inkscape:connector-curvature="0"
|
|
77
|
+
style="fill:#ff7759" />
|
|
78
|
+
</g>
|
|
79
|
+
<defs
|
|
80
|
+
id="defs15">
|
|
81
|
+
<clipPath
|
|
82
|
+
id="clip0_2207_90691">
|
|
83
|
+
<rect
|
|
84
|
+
transform="translate(0,0.5)"
|
|
85
|
+
height="17"
|
|
86
|
+
width="17"
|
|
87
|
+
id="rect12"
|
|
88
|
+
x="0"
|
|
89
|
+
y="0"
|
|
90
|
+
style="fill:#ffffff" />
|
|
91
|
+
</clipPath>
|
|
92
|
+
</defs>
|
|
93
|
+
</svg>
|