• Stars
    star
    128
  • Rank 279,430 (Top 6 %)
  • Language
    JavaScript
  • License
    Apache License 2.0
  • Created over 1 year ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unified access to various AI models, such as ChatGPT, Diffusion, Cohere, and others, using a few Javascript lines.

Unified prompt, evaluation, and production integration to any large model

Intelligent Node

IntelliNode is a javascript module that integrates cutting-edge AI into your project. With its intuitive functions, you can easily feed data to models like ChatGPT, LLaMA, WaveNet, and Stable diffusion and receive generated text, speech, or images. It also offers high-level functions such as semantic search, multi-model evaluation, and chatbot capabilities.

Access the module

Install

One command and get access to latest models:

npm i intellinode

Examples

Gen

The Gen function quickly generates tailored content in one line.

import:

const { Gen } = require('intellinode');

call:

// one line to generate html page code
text = 'a registration page with flat modern theme.'
await Gen.save_html_page(text, folder, file_name, openaiKey);
// or generate blog post
const blogPost = await Gen.get_blog_post(prompt, apiKey, provider='cohere');

Chatbot (chatGPT)

import:

const { Chatbot, ChatGPTInput } = require('intellinode');

call:

// set the system mode and the user message.
const input = new ChatGPTInput('You are a helpful assistant.');
input.addUserMessage('What is the distance between the Earth and the Moon?');

// get the responses from the chatbot
const responses = await chatbot.chat(input);

The documentation on how to switch the chatbot between ChatGPT and LLama in this wiki page.

Semantic search

import:

const { SemanticSearch } = require('intellinode');

call:

const search = new SemanticSearch(apiKey);
// pivotItem is the item to search.
const results = await search.getTopMatches(pivotItem, searchArray, numberOfMatches);
const filteredArray = search.filterTopMatches(results, searchArray)

Prompt engineering

Generate improved prompts using LLMs:

const promptTemp = await Prompt.fromChatGPT("fantasy image with ninja jumping across buildings", openaiApiKey);
console.log(promptTemp.getInput());

Language models

import:

const { RemoteLanguageModel, LanguageModelInput } = require('intellinode');

call openai model:

const langModel = new RemoteLanguageModel('openai-key', 'openai');
model_name = 'text-davinci-003'

const results = await langModel.generateText(new LanguageModelInput({
  prompt: 'Write a product description for smart plug that works with voice assistant.',
  model: model_name,
  temperature: 0.7
}));

console.log('Generated text:', results[0]);

change to call cohere models:

const langModel = new RemoteLanguageModel('cohere-key', 'cohere');
model_name = 'command-xlarge-20221108'
// ... same code

Image models

import:

const { RemoteImageModel, SupportedImageModels, ImageModelInput } = require('intellinode');

call DALL·E:

provider=SupportedImageModels.OPENAI;

const imgModel = new RemoteImageModel(apiKey, provider);
const images = await imgModel.generateImages(new ImageModelInput({
    prompt: 'teddy writing a blog in times square',
    numberOfImages: 1
}));

change to call Stable Diffusion:

provider=SupportedImageModels.STABILITY;
// ... same code

Openai advanced access

To access Openai services from your Azure account, you have to call the following function at the beginning of your application:

const { ProxyHelper } = require('intellinode');
ProxyHelper.getInstance().setAzureOpenai(resourceName);

To access Openai from a proxy for restricted regions:

ProxyHelper.getInstance().setOpenaiProxyValues(openaiProxyJson);

For more details and in-depth code, check the samples.

The code repository setup

First setup

  1. Initiate the project:
cd IntelliNode
npm install
  1. Create a .env file with the access keys:
OPENAI_API_KEY=<key_value>
COHERE_API_KEY=<key_value>
GOOGLE_API_KEY=<key_value>
STABILITY_API_KEY=<key_value>
HUGGING_API_KEY=<key_value>

Test cases

  1. run the remote language models test cases: node test/integration/RemoteLanguageModel.test.js

  2. run the remote image models test cases: node test/integration/RemoteImageModel.test.js

  3. run the remote speech models test cases: node test/integration/RemoteSpeechModel.test.js

  4. run the embedding test cases: node test/integration/RemoteEmbedModel.test.js

  5. run the chatBot test cases: node test/integration/Chatbot.test.js

📕 Documentation

  • IntelliNode Wiki: Check the wiki page for indepeth instructions and practical use cases.
  • Showcase: Experience the potential of Intellinode in action, and use your keys to generate content and html pages.
  • Samples: Explore a code sample with detailed setup documentation to get started with Intellinode.
  • Model Evaluation: Demonstrate a swift approach to compare the performance of multiple models against designated target answers.

Pillars

The module foundation:

  • The wrapper layer provides low-level access to the latest AI models
  • The controller layer offers a unified input to any AI model by handling the differences. So you can switch between models like Openai and Cohere without changing the code.
  • The function layer provides abstract functionality that extends based on the app's use cases. For example, an easy-to-use chatbot or marketing content generation utilities.

Roadmap

Call for contributors: registration form .

  • Add support to OpenAI Completion.
  • Add support to OpenAI DALL·E 2.
  • Add support to other OpenAI functions.
  • Add support to cohere generate API.
  • Add support to Google language models.
  • Add support to Google speech models.
  • Add support to LLaMa AWS private deployment.
  • Add support to Midjourney image generation.
  • Add support to Stable diffusion.
  • Add support to hugging face inference.
  • Add more high-level functions like semantic search, etc.

License

Apache License

Copyright 2023 Github.com/Barqawiz/IntelliNode

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

More Repositories

1

Shakkala

Deep learning for AR text Vocalization - التشكيل الالي للنصوص العربية
Python
333
star
2

IntelliJava

Integrate with the latest language models, image generation, speech, and deep learning frameworks like ChatGPT, DALL·E, and Cohere using few java lines.
Java
55
star
3

Android_ApplicationTemplate

Create android apps fast without writing code ! part of Monkey Clicks project.
Java
15
star
4

Snnapy2-Filters

Snappy2 detects faces in images and applies custom image filters as overlays. With Snappy2, developers can easily add fun and engaging image filters to their applications.
Python
12
star
5

aind2-nlp-translation

Machine translation pipeline. Ready models to translate between languages.
HTML
8
star
6

Android-Kotlin-Basic2Advanced

A series of Android Kotlin apps based on Google & Udacity trainings. One stop page to prepare for Android associate developer certificate.
Kotlin
5
star
7

ChatGPT-AWS-S3-Assistant

ChatGPT-based automation for AWS s3 using the functions feature.
Jupyter Notebook
4
star
8

AI-Nanodegree-Term2

Python code for AI Nanodegree Term2 Projects (Keras+Tensorflow)
Jupyter Notebook
4
star
9

FastAPI_Twitter_Auth

Create twitter login API using FastAPI.
Python
3
star
10

Deprecated_AndroidUtility

Utility library for common and daily used android methods
Java
3
star
11

Barqawiz

Config files for my GitHub profile.
2
star
12

AI-Nanodegree-Term1

Collection of AI algorithms using python
Jupyter Notebook
1
star
13

NASA_TESS_Narrative

A narrative visualization project showcasing TESS's mission exoplanets discoveries and compare Earth-like characteristics.
JavaScript
1
star
14

space-invaders-js

Space Invaders classic arcade game using javascript and p5.
JavaScript
1
star