Skip to content

Instantly share code, notes, and snippets.

@Barqawiz
Last active September 20, 2023 10:18
Show Gist options
  • Save Barqawiz/cc215ee1a3d01917193f4bf179a4b6c8 to your computer and use it in GitHub Desktop.
Save Barqawiz/cc215ee1a3d01917193f4bf179a4b6c8 to your computer and use it in GitHub Desktop.
const { Chatbot, ChatGPTInput } = require('intellinode');
// set the api key for openai
const chatbot = new Chatbot(apiKey, 'openai');
// 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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment