adityadees / laravel-google-bard

A Laravel Package for Google Bard AI Chatbot

Home Page:https://packagist.org/packages/adityadees/laravel-google-bard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

laravel-bard

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

About

A Laravel Package for Google Bard AI Chatbot

https://packagist.org/packages/adityadees/laravel-google-bard

License:MIT License


Languages

Language:PHP 100.0%