for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For license terms, see /license.txt */
class Url
{
private const BASE_URL = 'https://api.deepseek.com/chat';
/**
* Get the endpoint URL for chat completions.
*
* @return string URL for the chat completions endpoint
*/
public static function completionsUrl(): string
return self::BASE_URL . '/completions';
}