#25947 [Bug]: Vector stores from config.yaml are not added
### Check for existing issues
- [x] I have searched the existing issues and checked that my issue is not a duplicate.
### What happened?
When configuring vector stores through the config.yaml
### Steps to Reproduce
0. Docker compose file: ``` services: litellm: image: docker.litellm.ai/berriai/litellm:v1.83.3-stable volumes: - ./litellm-config.yaml:/app/config.yaml command: - "--config=/app/config.yaml" ports: - "4000:4000" environment: DATABASE_URL: "postgresql://llmproxy:dbpassword9090@db:5432/litellm" STORE_MODEL_IN_DB: "True" # allows adding models to proxy via UI PGVECTOR_DATABASE_URL: "postgresql://pgvector_user:pgvector_pass@pgvector:5432/pgvector_db" env_file: - .env-litellm depends_on: db: condition: service_healthy restart: unless-stopped
db: # Main PostgreSQL database used by LiteLLM for proxy state image: postgres:16 restart: always container_name: litellm_db environment: POSTGRES_DB: litellm POSTGRES_USER: llmproxy POSTGRES_PASSWORD: dbpassword9090 ports: - "5432:5432" #volumes: # - postgres_data:/var/lib/postgresq…