1. Go to this page and download the library: Download mmnijas/deepseek library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mmnijas / deepseek example snippets
return [
'api_key' => env('DEEPSEEK_API_KEY'), // Your API key
'base_uri' => 'https://api.deepseek.com/v1', // API endpoint
'model' => 'deepseek-chat', // Default model
'timeout' => 30, // Request timeout in seconds
];
use Mmnijas\DeepSeek\Facades\DeepSeek;
$response = DeepSeek::chat([
['role' => 'user', 'content' => 'Hello, DeepSeek!']
]);
// Get the assistant's reply
echo $response['choices'][0]['message']['content'];
use Mmnijas\DeepSeek\Facades\DeepSeek;
use Illuminate\Http\Request;
class ChatController extends Controller
{
public function handle(Request $request)
{
$messages = [
['role' => 'user', 'content' => $request->input('message')]
];
$response = DeepSeek::chat($messages);
return response()->json([
'reply' => $response['choices'][0]['message']['content']
]);
}
}
use Mmnijas\DeepSeek\Facades\DeepSeek;
class AskDeepSeek extends Command
{
protected $signature = 'ask:deepseek {question}';
public function handle()
{
$response = DeepSeek::chat([
['role' => 'user', 'content' => $this->argument('question')]
]);
$this->info($response['choices'][0]['message']['content']);
}
}
$messages = [
['role' => 'system', 'content' => 'You are a helpful assistant'],
['role' => 'user', 'content' => 'Who won the world series in 2020?'],
['role' => 'assistant', 'content' => 'The Los Angeles Dodgers won the World Series in 2020.'],
['role' => 'user', 'content' => 'Where was it played?']
];
$response = DeepSeek::chat($messages);
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Support\Facades\RateLimiter;
RateLimiter::for('deepseek', function ($job) {
return Limit::perMinute(60); // Adjust based on your API plan
});