----------------------
Based on the information provided in the extracts, it seems like the
transformations
parameter in the
IngestionPipeline
expects a list of transformation instances, not just the class names.
In the extracts, there is no direct example of using
AzureOpenAIEmbedding
in the
IngestionPipeline
. However, there are examples of using other transformations and embeddings. For instance, in the
document management pipeline example (), transformations are used like this:
pipeline = IngestionPipeline(
transformations=[...], docstore=SimpleDocumentStore()
)
In the
Azure Cognitive Search example (), an embedding model is instantiated before being used:
embed_model = OpenAIEmbedding()
Based on these examples, you might need to instantiate
AzureOpenAIEmbedding
before using it in the
IngestionPipeline
. However, without the exact usage of
AzureOpenAIEmbedding
in the provided extracts, I can't provide a confident answer. I recommend checking the LlamaIndex documentation or source code for more information on how to use
AzureOpenAIEmbedding
in the
IngestionPipeline
.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------