You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,22 @@ $imageFile = AiClient::prompt('Generate an illustration of the PHP elephant in t
78
78
79
79
See the [`PromptBuilder` class](https://github.com/WordPress/php-ai-client/blob/trunk/src/Builders/PromptBuilder.php) and its public methods for all the ways you can configure the prompt.
80
80
81
+
### Configuring request options
82
+
83
+
You can configure HTTP transport options like timeout and maximum redirects using the `RequestOptions` DTO:
84
+
85
+
```php
86
+
use WordPress\AiClient\Providers\Http\DTO\RequestOptions;
0 commit comments