- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2024 04:35 AM
Hello All,
I am trying to follow the dbdemo called 'llm-rag-chatbot' available at the following link. The setup works Ok, and I have imported from the Databricks Marketplace an embedding model that is:
- bge_large_en_v1_5
Running the notebook called: 01-Data-Preparation-and-Index I am stuck with an error when trying to create a Vector Search Index with Managed Embeddings and the BGE model that I have setup as a serving endpoint, previously. More specifically, the Vector Search endpoint provisions succesfully, but when executing the index creation and syncronization method: create_delta_sync_index, I get the following error:
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 06:33 AM
Hello @Retired_mod , thanks a lot for the information you provided. Anyhow, I have managed a workaround, by pre-computing the embeddings for each chunk. I have created an embedding column on the source table and used this column as input to the create_delta_sync_index method.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2024 06:33 AM
Hello @Retired_mod , thanks a lot for the information you provided. Anyhow, I have managed a workaround, by pre-computing the embeddings for each chunk. I have created an embedding column on the source table and used this column as input to the create_delta_sync_index method.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2024 12:13 AM
Then after a long time the Cell stops with the following error message:
- When creating the Vector Search Index, ensure that you specify the correct parameters:
- embedding_source_column: This should match the column name containing your text data (e.g., ‘content’).
- embedding_model_endpoint_name: Use ‘bge-large-en’ as you’ve set up this model as a serving endpoint.

