├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── qwen.php ├── public └── images │ └── laravel qwen ai banner.jpg └── src ├── Exceptions └── ApiKeyIsMissing.php ├── QwenLaravelFacade.php └── QwenLaravelServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/qwen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/config/qwen.php -------------------------------------------------------------------------------- /public/images/laravel qwen ai banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/public/images/laravel qwen ai banner.jpg -------------------------------------------------------------------------------- /src/Exceptions/ApiKeyIsMissing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/src/Exceptions/ApiKeyIsMissing.php -------------------------------------------------------------------------------- /src/QwenLaravelFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/src/QwenLaravelFacade.php -------------------------------------------------------------------------------- /src/QwenLaravelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwen-php/qwen-laravel/HEAD/src/QwenLaravelServiceProvider.php --------------------------------------------------------------------------------