1.3.2 • Published 4 months ago

@rehat666/bard-api v1.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Google Bard API

Description

@rehat666/bard-api is a Node.js library for interacting with Bard, an AI Chatbot developed by Google. Bard is based on Google's Large language model (LLM), LaMDA, which is designed to generate human-like text and images in response to prompts.

What is Bard?

Bard is basically an AI Chatbot developed by Google. It is based on Google’s Large language model (LLM), LaMDA, similar to how ChatGPT is based on GPT. These are types of neural networks that mimic the underlying architecture of the brain in the form of a computer. Bard is separate from Google Search, which is the default way how billions of people look for information on the web. Unlike how a traditional search works, Bard is conversational and allows users to write a prompt and receive human-like text and images generated by artificial intelligence.

In its own description, Bard is a “large language model, also known as a conversational AI or chatbot trained to be informative and comprehensive”. “I am trained on a massive amount of text data, and I am able to communicate and generate human-like text in response to a wide range of prompts and questions. For example, I can provide summaries of factual topics or create stories.”

Installation

To use the Bard-API-Node library in your project, you can install it via npm directly:

npm install @rehat666/bard-api

Authentication

To authenticate with the Bard API, you need to obtain the session value. Here's how you can get it:

  1. Visit https://bard.google.com/.
  2. Open the browser console by pressing F12 for phones use (Edit This Cookie) Extension.
  3. Go to the "Application" tab.
  4. Under "Cookies", find the cookie named __Secure-1PSID or __Secure-3PSID.
  5. Copy the value of the cookie, which will be your session value.

Usage

const { BardAPI } = require('@rehat666/bard-api');

async function testAssistant() {
  try {
    const assistant = new BardAPI();

    await assistant.setSession('__Secure-1PSID', 'YourSecure1PSIDToken');
    
    const response = await assistant.getBardResponse('Hello, how are you?');
    console.log('Bard:', response.content);
  } catch (error) {
    console.error('Error:', error);
  }
}

testAssistant();

Make sure to replace Your_Session_Value with the actual value of your session obtained from the Bard website.

📜 License

  • Don't sell my source code.
  • Don't claim my source code as your own.
  • bard-api created by rehat666 | Ohio03.