12.2.2-beta • Published 1 year ago

@jmuzhen/gemini-g4f-beta v12.2.2-beta

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
1 year ago

Installation

Install with the following command, or the command for your favorite package manager.

npm install gemini-ai

Quickstart

Make a text request:

import Gemini from "gemini-ai";

const gemini = new Gemini(API_KEY);

console.log(await gemini.ask("Hi!"));

Make a streaming text request:

import Gemini from "gemini-ai";

const gemini = new Gemini(API_KEY);

gemini.ask("Hi!", {
	stream: console.log,
});

Chat with Gemini:

import Gemini from "gemini-ai";

const gemini = new Gemini(API_KEY);
const chat = gemini.createChat();

console.log(await chat.ask("Hi!"));
console.log(await chat.ask("What's the last thing I said?"));

Read the full docs at https://github.com/EvanZhouDev/gemini-ai.

Table of Contents

12.2.2-beta

1 year ago

12.2.1-beta

1 year ago

12.2.0-beta

1 year ago