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
The maximum length of input text for our embedding models are 2048 tokens (approximately equivalent to around 2-3 pages of text). You should verify that your inputs don't exceed this limit before making a request.
36
+
The maximum length of input text for our embedding models is 2048 tokens (equivalent to around 2-3 pages of text). You should verify that your inputs don't exceed this limit before making a request.
37
37
38
38
### Choose the best model for your task
39
39
40
-
For the search models you can obtain embeddings in two ways. The `<search_model>-doc` model is used for longer pieces of text (to be searched over) and the `<search_model>-query` model is used for shorter pieces of text, typically queries or class labels in zero shot classification. You can read more about all of the Embeddings models in our [Models](../concepts/models.md) guide.
40
+
For the search models, you can obtain embeddings in two ways. The `<search_model>-doc` model is used for longer pieces of text (to be searched over) and the `<search_model>-query` model is used for shorter pieces of text, typically queries or class labels in zero shot classification. You can read more about all of the Embeddings models in our [Models](../concepts/models.md) guide.
41
41
42
42
### Replace newlines with a single space
43
43
44
-
Unless you are embedding code, we suggest replacing newlines (\n) in your input with a single space, as we have observed inferior results when newlines are present.
44
+
Unless you're embedding code, we suggest replacing newlines (\n) in your input with a single space, as we have observed inferior results when newlines are present.
45
45
46
46
## Limitations & risks
47
47
48
-
Our embedding models may be unreliable or pose social risks in certain cases, and may cause harm in the absence of mitigations. Please review our Responsible AI content for more information on how to approach their use responsibly.
48
+
Our embedding models may be unreliable or pose social risks in certain cases, and may cause harm in the absence of mitigations. Review our Responsible AI content for more information on how to approach their use responsibly.
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/includes/studio.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,8 @@ keywords:
14
14
## Prerequisites
15
15
16
16
- An Azure subscription - <ahref="https://azure.microsoft.com/free/cognitive-services"target="_blank">Create one for free</a>
17
-
- Access granted to service in the desired Azure subscription. This service is currently invite only. You can fill out a new use case request here: <ahref="https://aka.ms/oai/access"target="_blank">https://aka.ms/oai/access</a>
18
-
- An Azure OpenAI Service resource with a model deployed. If you don't have a resource/model the process is documented in our [resource deployment guide](../how-to/create-resource.md)
17
+
- Access granted to service in the desired Azure subscription. Currently, this service is available only by invitation. You can fill out a new use case request here: <ahref="https://aka.ms/oai/access"target="_blank">https://aka.ms/oai/access</a>
18
+
- An Azure OpenAI Service resource with a model deployed. If you don't have a resource/model, the process is documented in our [resource deployment guide](../how-to/create-resource.md)
19
19
20
20
## Go to the Azure OpenAI Studio
21
21
@@ -27,22 +27,22 @@ You'll first land on our main page for the Azure OpenAI Studio and from here you
27
27
28
28
:::image type="content" source="../media/quickstarts/studio-start.png" alt-text="Screenshot of the landing page of the Azure OpenAI Studio with sections highlighted." lightbox="../media/quickstarts/studio-start.png":::
29
29
30
-
- Resources without a deployment will be prompted to create one. This is required to be able to inference with your models
30
+
- Resources without a deployment will be prompted to create one. A deployment is required to be able to inference with your models
31
31
- Get started with a few simple examples that demonstrate the capabilities of the service
32
32
- Navigate to different parts of the Studio including the **Playground** for experimentation and our fine-tuning workflow
33
33
- Find quick links to other helpful resources like documentation and community forums
34
34
35
-
From here, select the **create new deployment** button in the banner at the top. If you don't see this, you already have a deployment and can proceed to the 'playground' step.
35
+
From here, select the **create new deployment** button in the banner at the top. If you don't see this button, you already have a deployment and can proceed to the [Playground](#playground) step.
36
36
37
37
## Deployments
38
38
39
-
Before you can generate text or inference, you need to deploy a model. This is done by clicking the **create new deployment** on the deployments page. From here you can select from one of our many available models. For getting started we recommend `text-davinci-002` for users in South Central and `text-davinci-001` for users in West Europe (`text-davinci-002`isn't available in this region).
39
+
Before you can generate text or inference, you need to deploy a modelby clicking the **create new deployment**button on the deployments page. From here you can select from one of our many available models. For getting started we recommend selecting the `text-davinci-002`model.
40
40
41
41
Once this is complete, select the 'Playground' button on the left nav to start experimenting.
42
42
43
43
## Playground
44
44
45
-
The best way to start exploring completions is through our Playground. It's simply a text box where you can submit a prompt to generate a completion. From this page you can easily iterate and experiment with the capabilities. The following is an overview of the features available to you on this page:
45
+
The best way to start exploring completions is through our Playground. It's simply a text box where you can submit a prompt to generate a completion. From this page, you can easily iterate and experiment with the capabilities. The following list is an overview of the features available to you on this page:
46
46
47
47
:::image type="content" source="../media/quickstarts/playground-load.png" alt-text="Screenshot of the playground page of the Azure OpenAI Studio with sections highlighted." lightbox="../media/quickstarts/playground-load.png":::
0 commit comments