Skip to content

Commit b0d99c2

Browse files
Merge pull request #284379 from TimShererWithAquent/081224OPBR
Resolve warnings.
2 parents 6a1c269 + 5387dd9 commit b0d99c2

7 files changed

+8
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This example demonstrates how to create an assistant that adds a new todo task t
5454

5555
This example demonstrates how to create an assistant that adds a new todo task to a database. The trigger has a static description of `Create a new todo task` used by the model. The function itself takes a string, which represents a new task to add. When executed, the function adds the task as a new todo item in a custom item store and returns a response from the store.
5656

57-
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/nodejs/src/functions/assistantSkills.ts" range="9-24" :::
57+
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantSkills.ts" range="9-24" :::
5858

5959
::: zone-end
6060
::: zone pivot="programming-language-powershell"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This example demonstrates the creation process, where the HTTP PUT function that
5353

5454
This example demonstrates the creation process, where the HTTP PUT function that creates a new assistant chat bot with the specified ID. The response to the prompt is returned in the HTTP response.
5555

56-
:::code language="javascript" source="~/functions-openai-extension/samples/assistant/nodejs/src/functions/assistantApis.ts" range="7-29" :::
56+
:::code language="javascript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="7-29" :::
5757

5858
::: zone-end
5959
::: zone pivot="programming-language-powershell"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This example demonstrates the creation process, where the HTTP POST function tha
5353

5454
This example demonstrates the creation process, where the HTTP POST function that sends user prompts to the assistant chat bot. The response to the prompt is returned in the HTTP response.
5555

56-
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/nodejs/src/functions/assistantApis.ts" range="32-50":::
56+
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="32-50":::
5757

5858
::: zone-end
5959
::: zone pivot="programming-language-powershell"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This example demonstrates the creation process, where the HTTP GET function that
5656

5757
This example demonstrates the creation process, where the HTTP GET function that queries the conversation history of the assistant chat bot. The response to the prompt is returned in the HTTP response.
5858

59-
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/nodejs/src/functions/assistantApis.ts" range="57-71":::
59+
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="57-71":::
6060

6161
::: zone-end
6262
::: zone pivot="programming-language-powershell"

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ This example shows how to retrieve embeddings stored at a specified file that is
5959
::: zone pivot="programming-language-typescript"
6060
This example shows how to generate embeddings for a raw text string.
6161

62-
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/nodejs/src/app.ts" range="7-31":::
62+
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="7-31":::
6363

6464
This example shows how to retrieve embeddings stored at a specified file that is accessible to the function.
6565

66-
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/nodejs/src/app.ts" range="37-61":::
66+
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="37-61":::
6767

6868
::: zone-end
6969
::: zone pivot="programming-language-powershell"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This example writes an HTTP input stream to a semantic document store at the pro
5252
::: zone pivot="programming-language-typescript"
5353
This example writes an HTTP input stream to a semantic document store at the provided URL.
5454

55-
:::code language="typescript" source="~/functions-openai-extension/samples/rag-aisearch/nodejs/src/app.ts" range="7-38":::
55+
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="7-38":::
5656

5757
::: zone-end
5858
::: zone pivot="programming-language-powershell"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This example shows how to perform a semantic search on a file.
5353

5454
This example shows how to perform a semantic search on a file.
5555

56-
:::code language="typescript" source="~/functions-openai-extension/samples/rag-aisearch/nodejs/src/app.ts" range="40-58":::
56+
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="40-58":::
5757

5858

5959
::: zone-end

0 commit comments

Comments
 (0)