Skip to content

Commit

Permalink
llmhub
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Mar 27, 2024
1 parent e53dcaa commit 25b6c91
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion app/Models/DocumentChunk.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

/**
* @property Document $document
* @package App\Models
*/
class DocumentChunk extends Model
{
Expand Down
3 changes: 1 addition & 2 deletions tests/Feature/OpenAiClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -39,7 +38,7 @@ public function test_completion(): void
'choices' => [
[
'message' => [
'content' => 'awesome!'
'content' => 'awesome!',
],
],
],
Expand Down

0 comments on commit 25b6c91

Please sign in to comment.