Skip to content

Commit 37fdec7

Browse files
committed
fixes
1 parent e9a02e5 commit 37fdec7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/ai-foundry/foundry-models/how-to/quickstart-github-models.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To complete this tutorial, you need:
2727

2828
- A GitHub account with access to [GitHub Models](https://docs.github.com/en/github-models/).
2929
- 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.
3131

3232

3333
## Upgrade to Azure AI Foundry Models
@@ -64,7 +64,7 @@ To get the key and endpoint:
6464

6565
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.
6666

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.
6868

6969
:::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":::
7070

@@ -74,17 +74,17 @@ To use your deployed model with code, you need the model's endpoint URL and key,
7474

7575
* OpenAI SDK
7676
* Azure OpenAI SDK
77-
* Azure AI Foundry SDK
77+
* Azure AI Inference SDK
7878

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:
8080

8181
[!INCLUDE [code-create-chat-client](../../foundry-models/includes/code-create-chat-client.md)]
8282

8383
Generate your first chat completion:
8484

8585
[!INCLUDE [code-create-chat-completion](../../foundry-models/includes/code-create-chat-completion.md)]
8686

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*. 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*.
8888

8989
> [!IMPORTANT]
9090
> 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

Comments
 (0)