adityadees/laravel-google-bard

A Laravel Package for Google Bard AI Chatbot

v1.1.1 2023-06-11 14:06 UTC

This package is auto-updated.

Last update: 2024-05-11 19:56:44 UTC


README

A Laravel Package for Google Bard AI Chatbot

INSTALATION

  • composer require adityadees/laravel-google-bard
  • php artisan vendor:publish --tag=laravel-bard
  • New file laravel-bard.php will created under config folder
  • Fill the bard_token with your token

BARD TOKEN

Visit https://bard.google.com/ Go to Developer tools or press F12 Application → Cookies → Copy the value of __Secure-1PSID cookie.

image

RUN

$bard = (new LaravelBard())->get_answer('type_your_text_here');

# to get the reply just access this array
$bard["content"];

# you can access others array like this
$bard["conversation_id"];
$bard["response_id"];
$bard["factualityQueries"];
$bard["textQuery"];
$bard["choices"];

Example

$bard = (new LaravelBard())->get_answer('hello whats your name');
dd($bard["content"]);
image

Feel free to help improve this package

Note: The package contain resources from repository https://github.com/dsdanielpark/Bard-API