Skip to content

Commit d4d2c57

Browse files
committed
Blocking fixes
1 parent bf7d326 commit d4d2c57

5 files changed

+12
-8
lines changed

articles/azure-functions/functions-bindings-openai-assistantpost-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ zone_pivot_groups: programming-languages-set-functions
1010

1111
[!INCLUDE [preview-support](../../includes/functions-openai-support-limitations.md)]
1212

13-
The Azure OpenAI assistant post input binding lets you to send prompts to assistant chat bots.
13+
The Azure OpenAI assistant post input binding lets you send prompts to assistant chat bots.
1414

1515
For information on setup and configuration details of the Azure OpenAI extension, see [Azure OpenAI extensions for Azure Functions](./functions-bindings-openai.md). To learn more about Azure OpenAI assistants, see [Azure OpenAI Assistants API](../ai-services/openai/concepts/assistants.md).
1616
::: zone pivot="programming-language-javascript,programming-language-typescript"

articles/azure-functions/functions-bindings-openai-embeddingsstore-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ For more information about *function.json* file properties, see the [Configurati
103103
::: zone pivot="programming-language-csharp"
104104
## Attributes
105105

106-
Apply the `EmbeddingsStoreOutput` attribute to define a embeddings store output binding, which supports these parameters:
106+
Apply the `EmbeddingsStoreOutput` attribute to define an embeddings store output binding, which supports these parameters:
107107

108108
| Parameter | Description |
109109
| --------- | ----------- |

articles/azure-functions/functions-bindings-openai-textcompletion-input.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,11 @@ The attribute supports these parameters:
120120
| **TopP** | _Optional_. Gets or sets an alternative to sampling with temperature, called nucleus sampling, as a string. In this sampling method, the model considers the results of the tokens with `top_p` probability mass. So `0.1` means only the tokens comprising the top 10% probability mass are considered. You should use either `Temperature` or `TopP`, but not both. |
121121
| **MaxTokens** | _Optional_. Gets or sets the maximum number of tokens to generate in the completion, as a string with a default of `100`. The token count of your prompt plus `max_tokens` can't exceed the model's context length. Most models have a context length of 2,048 tokens (except for the newest models, which support 4096). |
122122

123-
124123
::: zone-end
125124
::: zone pivot="programming-language-java"
126125
## Annotations
127126

128-
The `TextCompletion` annotation enables you to define a text completion input binding, which supports these parameters:
129-
::: zone-end
127+
The `TextCompletion` annotation enables you to define a text completion input binding, which supports these parameters:
130128

131129
| Element | Description |
132130
| ------- | ----------- |
@@ -152,8 +150,7 @@ During the preview, define the input binding as a `generic_input_binding` bindin
152150
| **top_p** | _Optional_. Gets or sets an alternative to sampling with temperature, called nucleus sampling, as a string. In this sampling method, the model considers the results of the tokens with `top_p` probability mass. So `0.1` means only the tokens comprising the top 10% probability mass are considered. You should use either `Temperature` or `TopP`, but not both. |
153151
| **max_tokens** | _Optional_. Gets or sets the maximum number of tokens to generate in the completion, as a string with a default of `100`. The token count of your prompt plus `max_tokens` can't exceed the model's context length. Most models have a context length of 2,048 tokens (except for the newest models, which support 4096). |
154152

155-
::: zone-end
156-
153+
::: zone-end
157154
::: zone pivot="programming-language-powershell"
158155
## Configuration
159156

articles/azure-functions/functions-bindings-openai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure OpenAI Extension for Azure Functions
2+
title: Azure OpenAI extension for Azure Functions
33
description: Learn to configure the Azure OpenAI extension to be able to integrate your Azure Functions code executions with Azure OpenAI APIs.
44
ms.topic: reference
55
ms.date: 05/14/2024
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1+
---
2+
author: ggailey777
3+
ms.service: azure-functions
4+
ms.topic: include
5+
ms.date: 05/13/2024
6+
ms.author: glenga
7+
---
18
Examples aren't yet available.

0 commit comments

Comments
 (0)