File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 2424use Symfony \AI \Store \Bridge \Neo4j \Store as Neo4jStore ;
2525use Symfony \AI \Store \Bridge \Postgres \Store as PostgresStore ;
2626use Symfony \AI \Store \Bridge \Qdrant \Store as QdrantStore ;
27+ use Symfony \AI \Store \Bridge \Redis \Store as RedisStore ;
2728use Symfony \AI \Store \Bridge \SurrealDb \Store as SurrealDbStore ;
2829use Symfony \AI \Store \Bridge \Typesense \Store as TypesenseStore ;
2930use Symfony \AI \Store \Bridge \Weaviate \Store as WeaviateStore ;
8889 env ('QDRANT_SERVICE_API_KEY ' ),
8990 'symfony ' ,
9091 ),
92+ 'redis ' => static fn (): RedisStore => new RedisStore (new Redis ([
93+ 'host ' => env ('REDIS_HOST ' ),
94+ 'port ' => 6379 ,
95+ ]), 'symfony ' ),
9196 'surrealdb ' => static fn (): SurrealDbStore => new SurrealDbStore (
9297 httpClient: http_client (),
9398 endpointUrl: env ('SURREALDB_HOST ' ),
You can’t perform that action at this time.
0 commit comments