Hi starfriend,
You can move your fine-tuned Azure OpenAI models to another Azure account to ensure that all future usage and fine-tuning costs are billed to the second account. To do this, follow these steps:
Export the fine-tuned model from the original Azure OpenAI resource:
Go to the Azure portal → Azure OpenAI resource → Fine-tuned models.
Select the fine-tuned model you want to transfer.
Use the **Export** option to download the model archive.
**Import the model into the new Azure account**:
Sign in to your second Azure account.
Ensure you have an Azure OpenAI resource set up with access to the same base model (e.g., `gpt-35-turbo` or `gpt-4`).
Go to the Azure portal → Azure OpenAI resource → Fine-tuned models → Import, and upload the exported model archive.
**Update your application configuration**:
Point your applications or API clients to the new resource endpoint and use the API key from the second Azure account.
**Continue fine-tuning or evaluation in the new account**:
Any further fine-tuning, evaluation, or inference done under the new resource will be billed to the second account.
The model transfer itself does not generate significant additional cost on the old account beyond the export operation. Note that simply sharing API keys or using service principals between accounts will not change where the costs are billed — the billing always follows the resource’s subscription.
I hope this information helps.