litellm-proxy-1 | ValueError: Provider 'pg_vector' is not supported for RAG ingestion #30878
Replies: 2 comments
-
|
I think this is a current LiteLLM limitation, not a Docker/container wiring issue.
So the split is roughly:
Practical workaround: create/populate the pgvector-backed vector store outside that RAG ingestion UI path, then query it through LiteLLM's vector store/search flow. To make the UI ingestion path work with |
Beta Was this translation helpful? Give feedback.
-
|
"Your issue is that if provider == "pg_vector":
raise ValueError("Provider 'pg_vector' is not supported for RAG ingestion")This will prevent the unsupported path from being triggered and allow you to handle the ingestion separately." |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use litellm-pgvector as a vector-store with litellm-proxy and have that started in a container along with pgvector-db in another container both along side litellm-proxy. If I try to use the Create Vector Store UI and in step 2 select PostgresSQL pgvector (LiteLLM Connector) as the provider I get error:
litellm-proxy-1 | ValueError: Provider 'pg_vector' is not supported for RAG ingestion
What am I missing?
Beta Was this translation helpful? Give feedback.
All reactions