You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can now make your AutoGPT clone in PHP using LLPhant.
Here is a simple example using the SerpApiSearch tool to create an autonomous PHP agent.
You just need to describe the objective and add the tools you want to use.
We will add more tools in the future.
Here is the simplest example:
<?phpuseAutoPHP\AutoPHP;
require_once'vendor/autoload.php';
// You describe the objective$objective = 'what is 1+1 ?';
$autoPHP = newAutoPHP($objective, []);
$answer = $autoPHP->run();
echo$answer;
Another one using serpapi to search for information:
useLLPhant\AutoPHP;
useLLPhant\Chat\FunctionInfo\FunctionBuilder;
useLLPhant\Tool\SerpApiSearch;
require_once'vendor/autoload.php';
// You describe the objective$objective = 'Find the names of the wives or girlfriends of at least 2 players from the 2023 male French football team.';
// You can add tools to the agent, so it can use them. You need an API key to use SerpApiSearch// Have a look here: https://serpapi.com$searchApi = newSerpApiSearch();
$function = FunctionBuilder::buildFunctionInfo($searchApi, 'search');
$autoPHP = newAutoPHP($objective, [$function]);
$autoPHP->run();