projectsaturnagents / good-buddy
A Laravel package for creating AI Agents using local tools
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/projectsaturnagents/good-buddy
Requires
- php: ^8.2
- projectsaturnstudios/pocketflow-php: ^0.1.2
README
use Agents\GoodBuddy\Agents\Sample\OpenWeatherChatBot; // Initialize your agent $agent = OpenWeatherChatBot::onConnection('anthropic') ->whereModel('claude-sonnet-4-20250514') ->whereSessionId('session-id-123') ->first(); // Set configurations that aren't already hardcoded (or overwrite them) $agent = $agent->setMaxTokens($max_tokens) ->setTemperature($temperature) ->setMemoryStore($memory_store) ->with('system_instructions', $system_instructions) ->with('tools', $tools); // Fire away $agent->create([ ['text' => $text] |['image' => $image] |['file' => $file] ]);