palm-ai-helper

1.1.1 • Public • Published

PaLM AI Helper Demo

Introduction

palm-ai-helper is a Node.js library that provides a simple interface for interacting with the Google Generative Language API for conversational generation. It simplifies the process of sending queries to the DiscussService of the Google Generative Language API.

Installation

To use palm-ai-helper, you can install it via npm:

npm i palm-ai-helper

Usage

Configuration

Before using Palm, make sure to obtain your API key from Google Generative AI API.

Quick Start

const Palm = require("palm-ai-helper");
const Palm.setAPIKey('YOUR_API_KEY');

async function test(){
    await palm.askAI('how to make pizza? ').then(result => console.log(result));
    await palm.askAI('what will happend if i throw it in water?').then(result => console.log(result));
}
test();

License


MIT License

Readme

Keywords

Package Sidebar

Install

npm i palm-ai-helper

Weekly Downloads

1

Version

1.1.1

License

ISC

Unpacked Size

4.28 kB

Total Files

5

Last publish

Collaborators

  • d4rks8ul