├── .gitattributes ├── .gitignore ├── IntelliNode ├── .npmignore ├── MCP_IMPLEMENTATION.md ├── README.md ├── config.json ├── controller │ ├── RemoteEmbedModel.js │ ├── RemoteFineTuneModel.js │ ├── RemoteImageModel.js │ ├── RemoteLanguageModel.js │ └── RemoteSpeechModel.js ├── env_example ├── front │ ├── intellinode.js │ └── intellinode.min.js ├── function │ ├── Chatbot.js │ ├── Gen.js │ ├── SemanticSearch.js │ ├── SemanticSearchPaging.js │ └── TextAnalyzer.js ├── index.js ├── model │ └── input │ │ ├── ChatModelInput.js │ │ ├── EmbedInput.js │ │ ├── FineTuneInput.js │ │ ├── FunctionModelInput.js │ │ ├── ImageModelInput.js │ │ ├── LanguageModelInput.js │ │ └── Text2SpeechInput.js ├── package-lock.json ├── package.json ├── reference_scripts.txt ├── resource │ └── templates │ │ ├── augmented_chatbot.in │ │ ├── graph_dashboard_prompt.in │ │ ├── html_page_prompt.in │ │ ├── instruct_update.in │ │ ├── prompt_example.in │ │ ├── sentiment_prompt.in │ │ └── summary_prompt.in ├── test │ ├── integration │ │ ├── AWSLLamav2.test.js │ │ ├── AnthropicWrapper.test.js │ │ ├── AzureChatContext.test.js │ │ ├── AzureOpenAIWrapper.test.js │ │ ├── AzureRemoteEmbedModel.test.js │ │ ├── Chatbot.test.js │ │ ├── ChatbotCohere.test.js │ │ ├── ChatbotGPT5.test.js │ │ ├── ChatbotNvidia.test.js │ │ ├── ChatbotVLLM.test.js │ │ ├── ChatbotWithData.test.js │ │ ├── CohereAIWrapper.test.js │ │ ├── CustomGen.test.js │ │ ├── GeminiAIWrapper.test.js │ │ ├── Gen.test.js │ │ ├── GenNvidia.test.js │ │ ├── GoogleAIWrapper.test.js │ │ ├── HuggingWrapper.test.js │ │ ├── LLamav2.test.js │ │ ├── LanguageModelInput.test.js │ │ ├── MCPClient.test.js │ │ ├── MistralAIWrapper.test.js │ │ ├── ModelEvaluation.test.js │ │ ├── NvidiaNimWrapper.test.js │ │ ├── NvidiaWrapper.test.js │ │ ├── OpenAIWrapper.test.js │ │ ├── OpenAIWrapperGPT5.test.js │ │ ├── Prompt.test.js │ │ ├── RemoteEmbedModel.test.js │ │ ├── RemoteEmbedModelVLLM.test.js │ │ ├── RemoteFineTune.test.js │ │ ├── RemoteImageModel.test.js │ │ ├── RemoteLanguageModel.test.js │ │ ├── RemoteSpeechModel.test.js │ │ ├── SemanticSearch.test.js │ │ ├── SemanticSearchPaging.test.js │ │ ├── StabilityAIWrapper.test.js │ │ ├── StabilityAIWrapperExtend.test.js │ │ ├── StabilityAIWrapperStyle.js │ │ ├── TextAnalyzer.test.js │ │ ├── VLLMWrapper.test.js │ │ └── intellicloudWrapper.test.js │ └── unit │ │ ├── CohereAIWrapper.test.js │ │ ├── GoogleAIWrapper.test.js │ │ ├── HuggingWrapper.test.js │ │ ├── OpenAIWrapper.test.js │ │ ├── Prompt.test.js │ │ ├── StabilityAIWrapper.test.js │ │ └── testRunner.js ├── utils │ ├── AudioHelper.js │ ├── ChatContext.js │ ├── Config2.js │ ├── ConnHelper.js │ ├── FetchClient.js │ ├── FileHelper.js │ ├── LLMEvaluation.js │ ├── MCPClient.js │ ├── MatchHelpers.js │ ├── ModelEvaluation.js │ ├── Prompt.js │ ├── ProxyHelper.js │ ├── StreamParser.js │ └── SystemHelper.js └── wrappers │ ├── AWSEndpointWrapper.js │ ├── AnthropicWrapper.js │ ├── CohereAIWrapper.js │ ├── GeminiAIWrapper.js │ ├── GoogleAIWrapper.js │ ├── HuggingWrapper.js │ ├── IntellicloudWrapper.js │ ├── MistralAIWrapper.js │ ├── NvidiaWrapper.js │ ├── OpenAIWrapper.js │ ├── ReplicateWrapper.js │ ├── StabilityAIWrapper.js │ └── VLLMWrapper.js ├── LICENSE ├── README.md ├── images ├── intellinode_new_header.png ├── llama_sagemaker │ ├── s1_sagemaker.png │ ├── s2_jumpstart.png │ ├── s3_endpoint.png │ ├── s4_lambda_trigger.png │ ├── s5_gateway.png │ └── step_domain.png ├── model_output │ ├── gaming-chair-xl.png │ ├── gaming-chair.png │ ├── graphs_example.png │ └── register-page.png └── multimodel-banner.png └── samples ├── command_sample ├── README.md ├── automate_s3_bucket.js ├── ecommerce_tool.js ├── env_example ├── package-lock.json ├── package.json ├── shiba_image_generator.js ├── test_azure_chatbot.js ├── test_chat_context.js ├── test_chatbot.js ├── test_chatbot_cohere.js ├── test_chatbot_gemini.js ├── test_chatbot_nvidia.js ├── test_chatbot_proxy.js ├── test_finetuning.js ├── test_gpt5_example.js ├── test_hugging_face.js ├── test_image_models.js ├── test_language_models.js ├── test_llama_chatbot.js ├── test_llm_evaluation.test.js ├── test_semantic_search.js ├── test_semantic_search_pagination.js ├── test_speech_models.js └── test_text_analyzer.js ├── content_generator_ui ├── README.md ├── app.js ├── front.js ├── index.html └── styles.css ├── frontend ├── README.md ├── html_generator.html ├── index.html ├── screenshot.png └── style_studio.html └── lambda_llama_sagemaker ├── README.md └── llama-endpoint-v1.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/.gitignore -------------------------------------------------------------------------------- /IntelliNode/.npmignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | .idea 4 | dist 5 | test/integration/ 6 | -------------------------------------------------------------------------------- /IntelliNode/MCP_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/MCP_IMPLEMENTATION.md -------------------------------------------------------------------------------- /IntelliNode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/README.md -------------------------------------------------------------------------------- /IntelliNode/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/config.json -------------------------------------------------------------------------------- /IntelliNode/controller/RemoteEmbedModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/controller/RemoteEmbedModel.js -------------------------------------------------------------------------------- /IntelliNode/controller/RemoteFineTuneModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/controller/RemoteFineTuneModel.js -------------------------------------------------------------------------------- /IntelliNode/controller/RemoteImageModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/controller/RemoteImageModel.js -------------------------------------------------------------------------------- /IntelliNode/controller/RemoteLanguageModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/controller/RemoteLanguageModel.js -------------------------------------------------------------------------------- /IntelliNode/controller/RemoteSpeechModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/controller/RemoteSpeechModel.js -------------------------------------------------------------------------------- /IntelliNode/env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/env_example -------------------------------------------------------------------------------- /IntelliNode/front/intellinode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/front/intellinode.js -------------------------------------------------------------------------------- /IntelliNode/front/intellinode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/front/intellinode.min.js -------------------------------------------------------------------------------- /IntelliNode/function/Chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/function/Chatbot.js -------------------------------------------------------------------------------- /IntelliNode/function/Gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/function/Gen.js -------------------------------------------------------------------------------- /IntelliNode/function/SemanticSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/function/SemanticSearch.js -------------------------------------------------------------------------------- /IntelliNode/function/SemanticSearchPaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/function/SemanticSearchPaging.js -------------------------------------------------------------------------------- /IntelliNode/function/TextAnalyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/function/TextAnalyzer.js -------------------------------------------------------------------------------- /IntelliNode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/index.js -------------------------------------------------------------------------------- /IntelliNode/model/input/ChatModelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/ChatModelInput.js -------------------------------------------------------------------------------- /IntelliNode/model/input/EmbedInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/EmbedInput.js -------------------------------------------------------------------------------- /IntelliNode/model/input/FineTuneInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/FineTuneInput.js -------------------------------------------------------------------------------- /IntelliNode/model/input/FunctionModelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/FunctionModelInput.js -------------------------------------------------------------------------------- /IntelliNode/model/input/ImageModelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/ImageModelInput.js -------------------------------------------------------------------------------- /IntelliNode/model/input/LanguageModelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/LanguageModelInput.js -------------------------------------------------------------------------------- /IntelliNode/model/input/Text2SpeechInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/model/input/Text2SpeechInput.js -------------------------------------------------------------------------------- /IntelliNode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/package-lock.json -------------------------------------------------------------------------------- /IntelliNode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/package.json -------------------------------------------------------------------------------- /IntelliNode/reference_scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/reference_scripts.txt -------------------------------------------------------------------------------- /IntelliNode/resource/templates/augmented_chatbot.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/augmented_chatbot.in -------------------------------------------------------------------------------- /IntelliNode/resource/templates/graph_dashboard_prompt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/graph_dashboard_prompt.in -------------------------------------------------------------------------------- /IntelliNode/resource/templates/html_page_prompt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/html_page_prompt.in -------------------------------------------------------------------------------- /IntelliNode/resource/templates/instruct_update.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/instruct_update.in -------------------------------------------------------------------------------- /IntelliNode/resource/templates/prompt_example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/prompt_example.in -------------------------------------------------------------------------------- /IntelliNode/resource/templates/sentiment_prompt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/sentiment_prompt.in -------------------------------------------------------------------------------- /IntelliNode/resource/templates/summary_prompt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/resource/templates/summary_prompt.in -------------------------------------------------------------------------------- /IntelliNode/test/integration/AWSLLamav2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/AWSLLamav2.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/AnthropicWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/AnthropicWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/AzureChatContext.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/AzureChatContext.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/AzureOpenAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/AzureOpenAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/AzureRemoteEmbedModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/AzureRemoteEmbedModel.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/Chatbot.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/Chatbot.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/ChatbotCohere.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/ChatbotCohere.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/ChatbotGPT5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/ChatbotGPT5.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/ChatbotNvidia.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/ChatbotNvidia.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/ChatbotVLLM.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/ChatbotVLLM.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/ChatbotWithData.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/ChatbotWithData.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/CohereAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/CohereAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/CustomGen.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/CustomGen.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/GeminiAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/GeminiAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/Gen.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/Gen.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/GenNvidia.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/GenNvidia.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/GoogleAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/GoogleAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/HuggingWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/HuggingWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/LLamav2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/LLamav2.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/LanguageModelInput.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/LanguageModelInput.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/MCPClient.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/MCPClient.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/MistralAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/MistralAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/ModelEvaluation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/ModelEvaluation.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/NvidiaNimWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/NvidiaNimWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/NvidiaWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/NvidiaWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/OpenAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/OpenAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/OpenAIWrapperGPT5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/OpenAIWrapperGPT5.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/Prompt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/Prompt.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/RemoteEmbedModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/RemoteEmbedModel.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/RemoteEmbedModelVLLM.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/RemoteEmbedModelVLLM.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/RemoteFineTune.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/RemoteFineTune.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/RemoteImageModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/RemoteImageModel.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/RemoteLanguageModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/RemoteLanguageModel.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/RemoteSpeechModel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/RemoteSpeechModel.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/SemanticSearch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/SemanticSearch.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/SemanticSearchPaging.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/SemanticSearchPaging.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/StabilityAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/StabilityAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/StabilityAIWrapperExtend.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/StabilityAIWrapperExtend.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/StabilityAIWrapperStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/StabilityAIWrapperStyle.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/TextAnalyzer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/TextAnalyzer.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/VLLMWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/VLLMWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/integration/intellicloudWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/integration/intellicloudWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/CohereAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/CohereAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/GoogleAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/GoogleAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/HuggingWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/HuggingWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/OpenAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/OpenAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/Prompt.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/Prompt.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/StabilityAIWrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/StabilityAIWrapper.test.js -------------------------------------------------------------------------------- /IntelliNode/test/unit/testRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/test/unit/testRunner.js -------------------------------------------------------------------------------- /IntelliNode/utils/AudioHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/AudioHelper.js -------------------------------------------------------------------------------- /IntelliNode/utils/ChatContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/ChatContext.js -------------------------------------------------------------------------------- /IntelliNode/utils/Config2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/Config2.js -------------------------------------------------------------------------------- /IntelliNode/utils/ConnHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/ConnHelper.js -------------------------------------------------------------------------------- /IntelliNode/utils/FetchClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/FetchClient.js -------------------------------------------------------------------------------- /IntelliNode/utils/FileHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/FileHelper.js -------------------------------------------------------------------------------- /IntelliNode/utils/LLMEvaluation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/LLMEvaluation.js -------------------------------------------------------------------------------- /IntelliNode/utils/MCPClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/MCPClient.js -------------------------------------------------------------------------------- /IntelliNode/utils/MatchHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/MatchHelpers.js -------------------------------------------------------------------------------- /IntelliNode/utils/ModelEvaluation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/ModelEvaluation.js -------------------------------------------------------------------------------- /IntelliNode/utils/Prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/Prompt.js -------------------------------------------------------------------------------- /IntelliNode/utils/ProxyHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/ProxyHelper.js -------------------------------------------------------------------------------- /IntelliNode/utils/StreamParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/StreamParser.js -------------------------------------------------------------------------------- /IntelliNode/utils/SystemHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/utils/SystemHelper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/AWSEndpointWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/AWSEndpointWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/AnthropicWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/AnthropicWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/CohereAIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/CohereAIWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/GeminiAIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/GeminiAIWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/GoogleAIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/GoogleAIWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/HuggingWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/HuggingWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/IntellicloudWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/IntellicloudWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/MistralAIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/MistralAIWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/NvidiaWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/NvidiaWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/OpenAIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/OpenAIWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/ReplicateWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/ReplicateWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/StabilityAIWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/StabilityAIWrapper.js -------------------------------------------------------------------------------- /IntelliNode/wrappers/VLLMWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/IntelliNode/wrappers/VLLMWrapper.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/README.md -------------------------------------------------------------------------------- /images/intellinode_new_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/intellinode_new_header.png -------------------------------------------------------------------------------- /images/llama_sagemaker/s1_sagemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/llama_sagemaker/s1_sagemaker.png -------------------------------------------------------------------------------- /images/llama_sagemaker/s2_jumpstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/llama_sagemaker/s2_jumpstart.png -------------------------------------------------------------------------------- /images/llama_sagemaker/s3_endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/llama_sagemaker/s3_endpoint.png -------------------------------------------------------------------------------- /images/llama_sagemaker/s4_lambda_trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/llama_sagemaker/s4_lambda_trigger.png -------------------------------------------------------------------------------- /images/llama_sagemaker/s5_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/llama_sagemaker/s5_gateway.png -------------------------------------------------------------------------------- /images/llama_sagemaker/step_domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/llama_sagemaker/step_domain.png -------------------------------------------------------------------------------- /images/model_output/gaming-chair-xl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/model_output/gaming-chair-xl.png -------------------------------------------------------------------------------- /images/model_output/gaming-chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/model_output/gaming-chair.png -------------------------------------------------------------------------------- /images/model_output/graphs_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/model_output/graphs_example.png -------------------------------------------------------------------------------- /images/model_output/register-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/model_output/register-page.png -------------------------------------------------------------------------------- /images/multimodel-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/images/multimodel-banner.png -------------------------------------------------------------------------------- /samples/command_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/README.md -------------------------------------------------------------------------------- /samples/command_sample/automate_s3_bucket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/automate_s3_bucket.js -------------------------------------------------------------------------------- /samples/command_sample/ecommerce_tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/ecommerce_tool.js -------------------------------------------------------------------------------- /samples/command_sample/env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/env_example -------------------------------------------------------------------------------- /samples/command_sample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/package-lock.json -------------------------------------------------------------------------------- /samples/command_sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/package.json -------------------------------------------------------------------------------- /samples/command_sample/shiba_image_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/shiba_image_generator.js -------------------------------------------------------------------------------- /samples/command_sample/test_azure_chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_azure_chatbot.js -------------------------------------------------------------------------------- /samples/command_sample/test_chat_context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_chat_context.js -------------------------------------------------------------------------------- /samples/command_sample/test_chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_chatbot.js -------------------------------------------------------------------------------- /samples/command_sample/test_chatbot_cohere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_chatbot_cohere.js -------------------------------------------------------------------------------- /samples/command_sample/test_chatbot_gemini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_chatbot_gemini.js -------------------------------------------------------------------------------- /samples/command_sample/test_chatbot_nvidia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_chatbot_nvidia.js -------------------------------------------------------------------------------- /samples/command_sample/test_chatbot_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_chatbot_proxy.js -------------------------------------------------------------------------------- /samples/command_sample/test_finetuning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_finetuning.js -------------------------------------------------------------------------------- /samples/command_sample/test_gpt5_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_gpt5_example.js -------------------------------------------------------------------------------- /samples/command_sample/test_hugging_face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_hugging_face.js -------------------------------------------------------------------------------- /samples/command_sample/test_image_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_image_models.js -------------------------------------------------------------------------------- /samples/command_sample/test_language_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_language_models.js -------------------------------------------------------------------------------- /samples/command_sample/test_llama_chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_llama_chatbot.js -------------------------------------------------------------------------------- /samples/command_sample/test_llm_evaluation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_llm_evaluation.test.js -------------------------------------------------------------------------------- /samples/command_sample/test_semantic_search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_semantic_search.js -------------------------------------------------------------------------------- /samples/command_sample/test_semantic_search_pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_semantic_search_pagination.js -------------------------------------------------------------------------------- /samples/command_sample/test_speech_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_speech_models.js -------------------------------------------------------------------------------- /samples/command_sample/test_text_analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/command_sample/test_text_analyzer.js -------------------------------------------------------------------------------- /samples/content_generator_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/content_generator_ui/README.md -------------------------------------------------------------------------------- /samples/content_generator_ui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/content_generator_ui/app.js -------------------------------------------------------------------------------- /samples/content_generator_ui/front.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/content_generator_ui/front.js -------------------------------------------------------------------------------- /samples/content_generator_ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/content_generator_ui/index.html -------------------------------------------------------------------------------- /samples/content_generator_ui/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/frontend/README.md -------------------------------------------------------------------------------- /samples/frontend/html_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/frontend/html_generator.html -------------------------------------------------------------------------------- /samples/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/frontend/index.html -------------------------------------------------------------------------------- /samples/frontend/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/frontend/screenshot.png -------------------------------------------------------------------------------- /samples/frontend/style_studio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/frontend/style_studio.html -------------------------------------------------------------------------------- /samples/lambda_llama_sagemaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/lambda_llama_sagemaker/README.md -------------------------------------------------------------------------------- /samples/lambda_llama_sagemaker/llama-endpoint-v1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intelligentnode/IntelliNode/HEAD/samples/lambda_llama_sagemaker/llama-endpoint-v1.zip --------------------------------------------------------------------------------