@@ -64,13 +64,13 @@ providers:
6464 config :
6565 db_path : /opt/app-root/src/.llama/distributions/rh/milvus.db
6666 persistence :
67- backend : kv_milvus_inline
67+ backend : kv_default
6868 namespace : vector_io::milvus
6969 - provider_id : ${env.ENABLE_FAISS:+faiss}
7070 provider_type : inline::faiss
7171 config :
7272 persistence :
73- backend : kv_faiss
73+ backend : kv_default
7474 namespace : vector_io::faiss
7575 - provider_id : ${env.MILVUS_ENDPOINT:+milvus-remote}
7676 provider_type : remote::milvus
@@ -83,7 +83,7 @@ providers:
8383 client_pem_path : ${env.MILVUS_CLIENT_PEM_PATH:=}
8484 client_key_path : ${env.MILVUS_CLIENT_KEY_PATH:=}
8585 persistence :
86- backend : kv_milvus_remote
86+ backend : kv_default
8787 namespace : vector_io::milvus_remote
8888 - provider_id : ${env.ENABLE_PGVECTOR:+pgvector}
8989 provider_type : remote::pgvector
@@ -94,7 +94,7 @@ providers:
9494 user : ${env.PGVECTOR_USER:=}
9595 password : ${env.PGVECTOR_PASSWORD:=}
9696 persistence :
97- backend : kv_pgvector
97+ backend : kv_default
9898 namespace : vector_io::pgvector
9999 safety :
100100 - provider_id : trustyai_fms
@@ -110,10 +110,10 @@ providers:
110110 config :
111111 persistence :
112112 agent_state :
113- backend : kv_agents
113+ backend : kv_default
114114 namespace : agents::meta_reference
115115 responses :
116- backend : sql_agents
116+ backend : sql_default
117117 table_name : agents_responses
118118 max_write_queue_size : 10000
119119 num_writers : 4
@@ -147,13 +147,13 @@ providers:
147147 provider_type : remote::huggingface
148148 config :
149149 kvstore :
150- backend : kv_datasetio_huggingface
150+ backend : kv_default
151151 namespace : datasetio::huggingface
152152 - provider_id : localfs
153153 provider_type : inline::localfs
154154 config :
155155 kvstore :
156- backend : kv_datasetio_localfs
156+ backend : kv_default
157157 namespace : datasetio::localfs
158158 scoring :
159159 - provider_id : basic
@@ -189,7 +189,7 @@ providers:
189189 config :
190190 storage_dir : /opt/app-root/src/.llama/distributions/rh/files
191191 metadata_store :
192- backend : sql_files
192+ backend : sql_default
193193 table_name : files_metadata
194194 - provider_id : ${env.ENABLE_S3:+s3}
195195 provider_type : remote::s3
@@ -201,7 +201,7 @@ providers:
201201 endpoint_url : ${env.S3_ENDPOINT_URL:=}
202202 auto_create_bucket : ${env.S3_AUTO_CREATE_BUCKET:=false}
203203 metadata_store :
204- backend : sql_files
204+ backend : sql_default
205205 table_name : files_metadata
206206 batches :
207207 - provider_id : reference
@@ -213,48 +213,27 @@ providers:
213213storage :
214214 backends :
215215 kv_default :
216- type : kv_sqlite
217- db_path : /opt/app-root/src/.llama/distributions/rh/kvstore.db
218- kv_agents :
219- type : kv_sqlite
220- db_path : /opt/app-root/src/.llama/distributions/rh/agents_store.db
221- kv_faiss :
222- type : kv_sqlite
223- db_path : /opt/app-root/src/.llama/distributions/rh/faiss.db
224- kv_milvus_inline :
225- type : kv_sqlite
226- db_path : /opt/app-root/src/.llama/distributions/rh/milvus_inline_registry.db
227- kv_milvus_remote :
228- type : kv_sqlite
229- db_path : /opt/app-root/src/.llama/distributions/rh/milvus_remote_registry.db
230- kv_pgvector :
231- type : kv_sqlite
232- db_path : /opt/app-root/src/.llama/distributions/rh/pgvector_registry.db
233- kv_datasetio_huggingface :
234- type : kv_sqlite
235- db_path : /opt/app-root/src/.llama/distributions/rh/huggingface_datasetio.db
236- kv_datasetio_localfs :
237- type : kv_sqlite
238- db_path : /opt/app-root/src/.llama/distributions/rh/localfs_datasetio.db
239- sql_inference :
240- type : sql_sqlite
241- db_path : /opt/app-root/src/.llama/distributions/rh/inference_store.db
242- sql_agents :
243- type : sql_sqlite
244- db_path : /opt/app-root/src/.llama/distributions/rh/responses_store.db
245- sql_files :
246- type : sql_sqlite
247- db_path : /opt/app-root/src/.llama/distributions/rh/files_metadata.db
216+ type : kv_postgres
217+ host : ${env.POSTGRES_HOST:=localhost}
218+ port : ${env.POSTGRES_PORT:=5432}
219+ db : ${env.POSTGRES_DB:=llamastack}
220+ user : ${env.POSTGRES_USER:=llamastack}
221+ password : ${env.POSTGRES_PASSWORD:=llamastack}
222+ table_name : ${env.POSTGRES_TABLE_NAME:=llamastack_kvstore}
248223 sql_default :
249- type : sql_sqlite
250- db_path : /opt/app-root/src/.llama/distributions/rh/sql_store.db
224+ type : sql_postgres
225+ host : ${env.POSTGRES_HOST:=localhost}
226+ port : ${env.POSTGRES_PORT:=5432}
227+ db : ${env.POSTGRES_DB:=llamastack}
228+ user : ${env.POSTGRES_USER:=llamastack}
229+ password : ${env.POSTGRES_PASSWORD:=llamastack}
251230 stores :
252231 metadata :
253232 backend : kv_default
254233 namespace : registry
255234 inference :
256- backend : sql_inference
257235 table_name : inference_store
236+ backend : sql_default
258237 max_write_queue_size : 10000
259238 num_writers : 4
260239 conversations :
0 commit comments