1.1.1 • Published 2 months ago

palm-ai-helper v1.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

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
1.1.1

2 months ago

1.1.0

2 months ago

1.0.5

4 months ago

1.0.4

5 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago