Skip to content

Commit

Permalink
_
Browse files Browse the repository at this point in the history
  • Loading branch information
Casmo committed Dec 8, 2023
1 parent d93a6f3 commit 41cde6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/embeddings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
// config for Vormkracht10/Embeddings
return [
'enabled' => env('EMBEDDINGS_ENABLED', true),
'driver' => env('EMBEDDINGSDRIVER', 'openai'),
'driver' => env('EMBEDDINGS_DRIVER', 'openai'),
'queue' => true,
'database' => [
'connection' => env('EMBEDDINGSDATABASE_CONNECTION', 'pgsql'),
'table' => env('EMBEDDINGSDB_TABLE', 'embeddings'),
'connection' => env('EMBEDDINGS_DATABASE_CONNECTION', 'pgsql'),
'table' => env('EMBEDDINGS_DB_TABLE', 'embeddings'),
],
'openai' => [
'key' => env('OPENAI_API_KEY'),
Expand Down

0 comments on commit 41cde6f

Please sign in to comment.