Skip to content

Commit 1720664

Browse files
committed
Prepare for 0.3.0 release.
1 parent 897e3b7 commit 1720664

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/Builders/PromptBuilder.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ public function usingWebSearch(WebSearch $webSearch): self
492492
/**
493493
* Sets the request options for HTTP transport.
494494
*
495-
* @since n.e.x.t
495+
* @since 0.3.0
496496
*
497497
* @param RequestOptions $requestOptions The request options.
498498
* @return self
@@ -676,7 +676,7 @@ private function inferCapabilityFromModelInterfaces(ModelInterface $model): ?Cap
676676
* Checks if the current prompt is supported by the selected model.
677677
*
678678
* @since 0.1.0
679-
* @since n.e.x.t Method visibility changed to public.
679+
* @since 0.3.0 Method visibility changed to public.
680680
*
681681
* @param CapabilityEnum|null $capability Optional capability to check support for.
682682
* @return bool True if supported, false otherwise.
@@ -1204,7 +1204,7 @@ private function getConfiguredModel(CapabilityEnum $capability): ModelInterface
12041204
*
12051205
* Request options are only applicable to API-based models that make HTTP requests.
12061206
*
1207-
* @since n.e.x.t
1207+
* @since 0.3.0
12081208
*
12091209
* @param ModelInterface $model The model to bind request options to.
12101210
* @return void

src/Providers/ApiBasedImplementation/AbstractApiBasedModel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ final public function getConfig(): ModelConfig
108108
/**
109109
* {@inheritDoc}
110110
*
111-
* @since n.e.x.t
111+
* @since 0.3.0
112112
*/
113113
final public function setRequestOptions(RequestOptions $requestOptions): void
114114
{
@@ -118,7 +118,7 @@ final public function setRequestOptions(RequestOptions $requestOptions): void
118118
/**
119119
* {@inheritDoc}
120120
*
121-
* @since n.e.x.t
121+
* @since 0.3.0
122122
*/
123123
final public function getRequestOptions(): ?RequestOptions
124124
{

src/Providers/ApiBasedImplementation/Contracts/ApiBasedModelInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
* This interface extends ModelInterface to add request options support
1414
* for models that communicate with external APIs via HTTP.
1515
*
16-
* @since n.e.x.t
16+
* @since 0.3.0
1717
*/
1818
interface ApiBasedModelInterface extends ModelInterface
1919
{
2020
/**
2121
* Sets the request options for HTTP transport.
2222
*
23-
* @since n.e.x.t
23+
* @since 0.3.0
2424
*
2525
* @param RequestOptions $requestOptions The request options to use.
2626
* @return void
@@ -30,7 +30,7 @@ public function setRequestOptions(RequestOptions $requestOptions): void;
3030
/**
3131
* Gets the request options for HTTP transport.
3232
*
33-
* @since n.e.x.t
33+
* @since 0.3.0
3434
*
3535
* @return RequestOptions|null The request options, or null if not set.
3636
*/

0 commit comments

Comments
 (0)