anups1ngh / Palm-ai

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.

Home Page:https://www.npmjs.com/package/palm-ai-helper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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.

https://www.npmjs.com/package/palm-ai-helper

License:MIT License


Languages

Language:JavaScript 100.0%