You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/foundry-models/how-to/quickstart-github-models.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ To complete this tutorial, you need:
27
27
28
28
- A GitHub account with access to [GitHub Models](https://docs.github.com/en/github-models/).
29
29
- An Azure subscription with a valid payment method. If you don't have an Azure subscription, create a [paid Azure account](https://azure.microsoft.com/pricing/purchase-options/pay-as-you-go) to begin. Alternatively, you can wait until you're ready to deploy your model to production, at which point you'll be prompted to create or update your Azure account to a standard account.
30
-
-[Models from partners and community](../../concepts/models.md#models-from-partners-and-community) require access to **Azure Marketplace**. Ensure you have the [permissions required to subscribe to model offerings](../../how-to/configure-marketplace.md). [Models sold directly by Azure](../../concepts/models.md#models-sold-directly-by-azure) don't have this requirement.
30
+
-[Foundry Models from partners and community](../concepts/models-from-partners.md) require access to **Azure Marketplace**. Ensure you have the [permissions required to subscribe to model offerings](configure-marketplace.md). [Foundry Models sold directly by Azure](../concepts/models-sold-directly-by-azure.md) don't have this requirement.
31
31
32
32
33
33
## Upgrade to Azure AI Foundry Models
@@ -64,7 +64,7 @@ To get the key and endpoint:
64
64
65
65
1. When your deployment is ready, you land on your project's **Overview** page, where you can see the Azure AI Foundry project's endpoint.
66
66
67
-
1.Go to the **Models + endpoints** tab in the left pane of the Azure AI Foundry portal and select the deployed model. The endpoint's target URI and API key are visible on the deployment's details page. Use these values in your code to use the model in your production environment.
67
+
1.To get the specific model's endpoint URL and API key, go to the **Models + endpoints** tab in the left pane of the Azure AI Foundry portal and select the deployed model. The endpoint's target URI and API key are visible on the deployment's details page. Use these values in your code to use the model in your production environment.
68
68
69
69
:::image type="content" source="../media/quickstart-github-models/github-models-get-production-key.png" alt-text="Screenshot showing how to get the URL and key associated with the deployment." lightbox="../media/quickstart-github-models/github-models-get-production-key.png":::
70
70
@@ -74,17 +74,17 @@ To use your deployed model with code, you need the model's endpoint URL and key,
74
74
75
75
* OpenAI SDK
76
76
* Azure OpenAI SDK
77
-
* Azure AI Foundry SDK
77
+
* Azure AI Inference SDK
78
78
79
-
For more details and examples, see [supported languages and SDKs](../supported-languages.md). The following example shows how to use the Azure AI Foundry SDK with the newly deployed model:
79
+
For more details and examples, see [supported languages and SDKs](../supported-languages.md). The following example shows how to use the Azure AI Inference SDK with the newly deployed model:
Use the parameter `model="<deployment-name>` to route your request to this deployment. *Deployments work as an alias of a given model under certain configurations*. See [Routing](inference.md#routing) concept page to learn how Azure AI Services route deployments.
87
+
Use the parameter `model="<deployment-name>` to route your request to this deployment. *Deployments work as an alias of a given model under certain configurations*.
88
88
89
89
> [!IMPORTANT]
90
90
> Unlike GitHub Models where all the models are already configured, the Azure AI Services resource allows you to control which models are available in your endpoint and under which configuration. Add as many models as you plan to use before indicating them in the `model` parameter. Learn how to [add more models](../../model-inference/how-to/create-model-deployments.md) to your resource.
0 commit comments