diff --git a/src/AiClient.php b/src/AiClient.php index 82b71c39..8146d07c 100644 --- a/src/AiClient.php +++ b/src/AiClient.php @@ -86,7 +86,7 @@ class AiClient /** * @var string The version of the AI Client. */ - public const VERSION = '0.4.3'; + public const VERSION = '1.0.0'; /** * @var ProviderRegistry|null The default provider registry instance. diff --git a/src/Common/Exception/TokenLimitReachedException.php b/src/Common/Exception/TokenLimitReachedException.php index 62cfcb9c..def739f9 100644 --- a/src/Common/Exception/TokenLimitReachedException.php +++ b/src/Common/Exception/TokenLimitReachedException.php @@ -11,14 +11,14 @@ * exceeds the allowed limit, whether that is the model's context window * or a configured maximum. * - * @since n.e.x.t + * @since 1.0.0 */ class TokenLimitReachedException extends RuntimeException { /** * The token limit that was reached, if known. * - * @since n.e.x.t + * @since 1.0.0 * * @var int|null */ @@ -27,7 +27,7 @@ class TokenLimitReachedException extends RuntimeException /** * Creates a new TokenLimitReachedException. * - * @since n.e.x.t + * @since 1.0.0 * * @param string $message The exception message. * @param int|null $maxTokens The token limit that was reached, if known. @@ -43,7 +43,7 @@ public function __construct(string $message = '', ?int $maxTokens = null, ?\Thro /** * Returns the token limit that was reached, if known. * - * @since n.e.x.t + * @since 1.0.0 * * @return int|null The token limit, or null if not provided. */