@@ -39,7 +39,7 @@ return [
39
39
| Here you may specify your ChromaDB Host. This is the host where your ChromaDB
40
40
| instance is running. This is used to connect to your ChromaDB instance.
41
41
*/
42
- 'host' => env('CHROMADB_HOST ', 'localhost'),
42
+ 'host' => env('CHROMA_HOST ', 'localhost'),
43
43
44
44
/*
45
45
|--------------------------------------------------------------------------
@@ -49,7 +49,7 @@ return [
49
49
| Here you may specify your ChromaDB Port. This is the port where your ChromaDB
50
50
| instance is running. This is used to connect to your ChromaDB instance.
51
51
*/
52
- 'port' => env('CHROMADB_PORT ', 8000),
52
+ 'port' => env('CHROMA_PORT ', 8000),
53
53
54
54
/*
55
55
|--------------------------------------------------------------------------
@@ -58,7 +58,7 @@ return [
58
58
|
59
59
| This is the tenant that you want to connect to.
60
60
*/
61
- 'tenant' => env('CHROMADB_TENANT ', 'default_tenant'),
61
+ 'tenant' => env('CHROMA_TENANT ', 'default_tenant'),
62
62
63
63
/*
64
64
|--------------------------------------------------------------------------
@@ -67,7 +67,7 @@ return [
67
67
|
68
68
| This is the database that you want to connect to.
69
69
*/
70
- 'database' => env('CHROMADB_DATABASE ', 'default_database'),
70
+ 'database' => env('CHROMA_DATABASE ', 'default_database'),
71
71
];
72
72
```
73
73
@@ -89,7 +89,7 @@ ChromaDB can be found in the [ChromaDB website](https://docs.trychroma.com/deplo
89
89
``` php
90
90
use Codewithkyrian\ChromaDB\Facades\ChromaDB;
91
91
92
- ChromaDB::version(); // Eg. 1.0.0
92
+ ChromaDB::version(); // Eg. 0.4.2
93
93
94
94
$collection = ChromaDB::createCollection('collection_name');
95
95
0 commit comments