23 lines
317 B
PHP
23 lines
317 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Tools;
|
||
|
|
||
|
class BaseTool
|
||
|
{
|
||
|
public string $name = 'BaseTool';
|
||
|
|
||
|
public string $type = 'function';
|
||
|
|
||
|
public string $description = 'BaseTool';
|
||
|
|
||
|
public array $parameters = [];
|
||
|
|
||
|
/**
|
||
|
* Create a new class instance.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|