Hi there
Yes, you can approach this in a couple of ways. Currently, Azure AI Foundry doesn’t have a fully built-in “automatic retrain” scheduler for custom models like a cron job inside the portal. However, you can automate retraining using Azure pipelines or Azure Functions. The usual approach is to:
Store your updated dataset in Azure Blob Storage or Data Lake.
Trigger a pipeline or function on a schedule (daily/weekly) using Azure Logic Apps, Azure Functions Timer Trigger, or Azure DevOps pipeline.
Call the Foundry API to start a new training job programmatically.
Deploy the new model once training completes, either by updating the existing endpoint or creating a new endpoint version.
This way, your endpoint can stay live while you refresh the model regularly. Keep in mind to monitor quotas and retraining costs, especially for large datasets or frequent schedules.