diff --git a/app/Models/DocumentChunk.php b/app/Models/DocumentChunk.php index 40c536c5..c9b9d2d7 100644 --- a/app/Models/DocumentChunk.php +++ b/app/Models/DocumentChunk.php @@ -9,7 +9,6 @@ /** * @property Document $document - * @package App\Models */ class DocumentChunk extends Model { diff --git a/tests/Feature/OpenAiClientTest.php b/tests/Feature/OpenAiClientTest.php index 63e04d38..1e698c09 100644 --- a/tests/Feature/OpenAiClientTest.php +++ b/tests/Feature/OpenAiClientTest.php @@ -6,7 +6,6 @@ use App\LlmDriver\Responses\EmbeddingsResponseDto; use OpenAI\Laravel\Facades\OpenAI; use OpenAI\Responses\Chat\CreateResponse as ChatCreateResponse; -use OpenAI\Responses\Completions\CreateResponse as CompletionsCreateResponse; use OpenAI\Responses\Embeddings\CreateResponse; use Tests\TestCase; @@ -39,7 +38,7 @@ public function test_completion(): void 'choices' => [ [ 'message' => [ - 'content' => 'awesome!' + 'content' => 'awesome!', ], ], ],