Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Paul hi,
synthetic data in foundry is generated in chat messages format mainly for fine tuning style scenarios not for rag evaluation so it will not plug into evaluators directly because rag evaluation expects structured jsonl with one record per line like {"question":"...","ground_truth":"...","context":"...","answer":"..."} where question is the user query ground_truth is the correct expected answer context is the retrieved document chunk and answer is the model output being evaluated u can convert the synthetic dataset by mapping user content to question assistant content to ground_truth but u still must populate context from ur actual indexed knowledge base otherwise retrieval metrics such as groundedness and faithfulness will not work there is no automatic built in conversion to rag ready format in the ui so the proper workflow is generate or collect q a pairs retrieve the relevant chunks from ur search index build a structured jsonl file and then upload that as an evaluation dataset for rag testing.
rgds,
Alex