Hi ! I keep getting rate limit error for Azure Open Ai embedding models ! Anyone has any suggestions to help remove this error I tired following the github issues but none have worked for me so far https://github.com/run-llama/llama_index/issues/7879
Don't embed things too fast? π You can either ramp up the number of max retries, or ingest things more slowly
Plain Text
embed_model = AzureOpenAIEmbedding(..., max_retries=10)
index = VectorStoreIndex(nodes=[], embed_model=embed_model, ...)
for doc in documents:
index.insert(doc)
Ah ! I did try the max_retries, that did not work. But let me give ingest doc wise. I have 2048 nodes is that a lot to ingest at once, just curious to know ?