{"id":24360194,"url":"https://github.com/deepseek-php/deepseek-laravel","last_synced_at":"2025-05-15T07:05:22.822Z","repository":{"id":270718690,"uuid":"911258781","full_name":"deepseek-php/deepseek-laravel","owner":"deepseek-php","description":"Laravel wrapper for Deepseek PHP client, to seamless deepseek API integration with laravel applications.","archived":false,"fork":false,"pushed_at":"2025-02-19T16:48:37.000Z","size":291,"stargazers_count":368,"open_issues_count":14,"forks_count":51,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-21T18:24:26.958Z","etag":null,"topics":["chatgpt","deepseek-chat","deepseek-coder","deepseek-integration","deepseek-laravel","deepseek-math","deepseek-php","deepseek-php-client","deepseek-php-library","deepseek-r1","deepseek-r1-zero","laravel-ai","openai","openai-integration"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deepseek-php.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-02T15:48:15.000Z","updated_at":"2025-04-19T09:28:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"4d18573a-e716-41d2-97b9-1ae2508352da","html_url":"https://github.com/deepseek-php/deepseek-laravel","commit_stats":null,"previous_names":["deepseek-php/deepseek-laravel"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepseek-php%2Fdeepseek-laravel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepseek-php%2Fdeepseek-laravel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepseek-php%2Fdeepseek-laravel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deepseek-php%2Fdeepseek-laravel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deepseek-php","download_url":"https://codeload.github.com/deepseek-php/deepseek-laravel/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254292040,"owners_count":22046426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chatgpt","deepseek-chat","deepseek-coder","deepseek-integration","deepseek-laravel","deepseek-math","deepseek-php","deepseek-php-client","deepseek-php-library","deepseek-r1","deepseek-r1-zero","laravel-ai","openai","openai-integration"],"created_at":"2025-01-18T21:03:23.305Z","updated_at":"2025-05-15T07:05:17.780Z","avatar_url":"https://github.com/deepseek-php.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deepseek Laravel\n\nLaravel wrapper for **[Deepseek PHP client](https://github.com/deepseek-php/deepseek-php-client)** to seamless [deepseek AI](https://www.deepseek.com) API integration with Laravel applications.\n\n## Table of Contents\n\n- [Installation](#installation)\n  - [Publishing Configuration File](#publishing-configuration-file)\n- [Usage](#usage)\n  - [Basic Usage](#basic-usage)\n  - [Advanced Usage](#advanced-usage)\n- [Testing](#testing)\n- [Contributors](#contributors-)\n- [Changelog](#changelog)\n- [Security](#security)\n- [License](#license)\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require deepseek-php/deepseek-laravel\n```\n\n### Publishing Configuration File\n\n```bash\nphp artisan vendor:publish --tag=deepseek\n```\nthen add token to `.env` file\n```php\nDEEPSEEK_API_KEY=\"your_api_key\"\n```\n\n## Usage\n\n### Basic Usage\n\n```php\nuse DeepSeekClient;\n\n$deepseek = app(DeepSeekClient::class);\n$response = $deepseek-\u003equery('Hello deepseek, I am Laravel Framework , how are you Today ^_^ ?')-\u003erun();\nprint_r(\"deepseek API response : \" . $response);\n```\n\n**Note**: In easy mode, it will take defaults for all configs [Check Default Values](https://github.com/deepseek-php/deepseek-php-client/blob/master/src/Enums/Configs/DefaultConfigs.php)\n\n### Advanced Usage\n\n```php\nuse DeepSeekClient;\n\n$deepseek = app(DeepSeekClient::class);\n\n// Another way, with customization\n$response = $deepseek\n    -\u003equery('Hello deepseek, how are you ?', 'system')\n    -\u003equery('Hello deepseek, my name is PHP ', 'user')\n    -\u003ewithModel(\"deepseek-chat\")\n    -\u003esetTemperature(1.5)\n    -\u003erun();\n\nprint_r(\"deepseek API response : \" . $response);\n```\n\n## Testing\n\nTests will come soon\n\n## Contributors ✨\n\nThanks to these wonderful people for contributing to this project! 💖\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/omaralalwi\"\u003e\n        \u003cimg src=\"https://avatars.githubusercontent.com/u/25439498?v=4\" width=\"70px;\" alt=\"Omar AlAlwi\"/\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\u003cb\u003eOmar AlAlwi\u003c/b\u003e\u003c/sub\u003e\n      \u003c/a\u003e\n      \u003cbr /\u003e\n      🏆 Creator\n    \u003c/td\u003e\n      \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/A909M\"\u003e\n        \u003cimg src=\"https://avatars.githubusercontent.com/u/119125167?v=4\" width=\"70px;\" alt=\"Asim Al-Wasai\"/\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\u003cb\u003e Assem Alwaseai \u003c/b\u003e\u003c/sub\u003e\n      \u003c/a\u003e\n      \u003cbr /\u003e\n      💻 Contributor\n    \u003c/td\u003e\n    \u003c!-- Contributors --\u003e\n    \u003c/td\u003e\n      \u003ctd align=\"center\"\u003e\n      \u003ca href=\"https://github.com/200-0K\"\u003e\n        \u003cimg src=\"https://avatars.githubusercontent.com/u/38166228?v=4\" width=\"70px;\" alt=\"Faisal\"/\u003e\n        \u003cbr /\u003e\n        \u003csub\u003e\u003cb\u003e Faisal \u003c/b\u003e\u003c/sub\u003e\n      \u003c/a\u003e\n      \u003cbr /\u003e\n      💻 Contributor\n    \u003c/td\u003e\n    \u003c!-- Contributors --\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nWant to contribute? Check out the [contributing guidelines](./CONTRIBUTING.md) and submit a pull request! 🚀\n\n### Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n---\n\u003cdiv\u003e\n\n# 🐘✨ **DeepSeek PHP Community** ✨🐘\n\nClick the button bellow or [join here](https://t.me/deepseek_php_community) to be part of our growing community!\n\n[![Join Telegram](https://img.shields.io/badge/Join-Telegram-blue?style=for-the-badge\u0026logo=telegram)](https://t.me/deepseek_php_community)\n\n\n### **Channel Structure** 🏗️\n- 🗨️ **General** - Daily chatter\n- 💡 **Ideas \u0026 Suggestions** - Shape the community's future\n- 📢 **Announcements \u0026 News** - Official updates \u0026 news\n- 🚀 **Releases \u0026 Updates** - Version tracking \u0026 migration support\n- 🐞 **Issues \u0026 Bug Reports** - Collective problem-solving\n- 🤝 **Pull Requests** - Code collaboration \u0026 reviews\n\n\u003c/div\u003e\n\n---\n### Security\n\nIf you discover any security-related issues, please email [omaralwi2010@gmail.com](mailto:omaralwi2010@gmail.com) instead of using the issue tracker.\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeepseek-php%2Fdeepseek-laravel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeepseek-php%2Fdeepseek-laravel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeepseek-php%2Fdeepseek-laravel/lists"}