From a013df970bc368b96e1f87e280d10bd9d4319ac8 Mon Sep 17 00:00:00 2001 From: Saeed <78552486+appsaeed@users.noreply.github.com> Date: Thu, 9 Oct 2025 01:55:34 +0600 Subject: [PATCH] docs: update README testing section in Responses assert example --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d452d93..41731fa 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,8 @@ expect($response->outputText)->toBe('awesome!'); After the requests have been sent there are various methods to ensure that the expected requests were sent: ```php +use OpenAI\Resources\Responses; + // assert completion create request was sent OpenAI::assertSent(Responses::class, function (string $method, array $parameters): bool { return $method === 'create' &&