Skip to content

Commit f31cb83

Browse files
committed
edit pass: prompt-flow-batch1
1 parent 763e3ca commit f31cb83

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

articles/machine-learning/prompt-flow/tools-reference/embedding-tool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Embedding tool in Azure Machine Learning prompt flow
33
titleSuffix: Azure Machine Learning
4-
description: The prompt flow embedding tool uses OpenAI's embedding models to convert text into dense vector representations for various NLP tasks.
4+
description: The prompt flow embedding tool uses OpenAI's embedding models to convert text into dense vector representations for various natural language processing tasks.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: prompt-flow
@@ -16,7 +16,7 @@ ms.date: 11/02/2023
1616

1717
# Embedding tool
1818

19-
OpenAI's embedding models convert text into dense vector representations for various NLP tasks. For more information, see the [OpenAI Embeddings API](https://platform.openai.com/docs/api-reference/embeddings).
19+
OpenAI's embedding models convert text into dense vector representations for various natural language processing tasks. For more information, see the [OpenAI Embeddings API](https://platform.openai.com/docs/api-reference/embeddings).
2020

2121
## Prerequisites
2222

articles/machine-learning/prompt-flow/tools-reference/llm-tool.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: LLM tool in Azure Machine Learning prompt flow
33
titleSuffix: Azure Machine Learning
4-
description: The prompt flow large language model (LLM) tool enables you to take advantage of widely used LLMs like OpenAI or Azure OpenAI for natural language processing.
4+
description: The prompt flow LLM tool enables you to take advantage of widely used large language models like OpenAI or Azure OpenAI for natural language processing.
55
services: machine-learning
66
ms.service: machine-learning
77
ms.subservice: prompt-flow
@@ -16,9 +16,9 @@ ms.date: 11/02/2023
1616

1717
# LLM tool
1818

19-
The prompt flow large language model (LLM) tool enables you to take advantage of widely used LLMs like [OpenAI](https://platform.openai.com/) or [Azure OpenAI Service](../../../cognitive-services/openai/overview.md) for natural language processing.
19+
The prompt flow large language model (LLM) tool enables you to take advantage of widely used large language models like [OpenAI](https://platform.openai.com/) or [Azure OpenAI Service](../../../cognitive-services/openai/overview.md) for natural language processing.
2020

21-
Prompt flow provides a few different LLM APIs:
21+
Prompt flow provides a few different large language model APIs:
2222

2323
- [Completion](https://platform.openai.com/docs/api-reference/completions): OpenAI's completion models generate text based on provided prompts.
2424
- [Chat](https://platform.openai.com/docs/api-reference/chat): OpenAI's chat models facilitate interactive conversations with text-based inputs and responses.
@@ -94,5 +94,5 @@ The following sections show various inputs.
9494
## Use the LLM tool
9595

9696
1. Set up and select the connections to OpenAI resources.
97-
1. Configure the LLM model API and its parameters.
97+
1. Configure the large language model API and its parameters.
9898
1. Prepare the prompt with [guidance](prompt-tool.md#write-a-prompt).

articles/machine-learning/prompt-flow/tools-reference/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following table provides an index of tools in prompt flow. If existing tools
2424
| [LLM](./llm-tool.md) | Uses Open AI's large language model (LLM) for text completion or chat. | Default | [promptflow-tools](https://pypi.org/project/promptflow-tools/) |
2525
| [Prompt](./prompt-tool.md) | Crafts a prompt by using Jinja as the templating language. | Default | [promptflow-tools](https://pypi.org/project/promptflow-tools/) |
2626
| [Embedding](./embedding-tool.md) | Uses Open AI's embedding model to create an embedding vector that represents the input text. | Default | [promptflow-tools](https://pypi.org/project/promptflow-tools/) |
27-
| [Open Source LLM](./open-source-llm-tool.md) | Uses an open-source model from the Azure Model catalog, deployed to an Azure Machine Learning online endpoint for LLM Chat or Completion API calls. | Default | [promptflow-tools](https://pypi.org/project/promptflow-tools/) |
27+
| [Open Source LLM](./open-source-llm-tool.md) | Uses an open-source model from the Azure Model catalog, deployed to an Azure Machine Learning online endpoint for large language model Chat or Completion API calls. | Default | [promptflow-tools](https://pypi.org/project/promptflow-tools/) |
2828
| [Serp API](./serp-api-tool.md) | Uses Serp API to obtain search results from a specific search engine. | Default | [promptflow-tools](https://pypi.org/project/promptflow-tools/) |
2929
| [Content Safety (Text)](./content-safety-text-tool.md) | Uses Azure Content Safety to detect harmful content. | Default | [promptflow-tools](https://pypi.org/project/promptflow-contentsafety/) |
3030
| [Faiss Index Lookup](./faiss-index-lookup-tool.md) | Searches a vector-based query from the Faiss index file. | Default | [promptflow-vectordb](https://pypi.org/project/promptflow-vectordb/) |

articles/machine-learning/prompt-flow/tools-reference/prompt-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 11/02/2023
1616

1717
# Prompt tool
1818

19-
The prompt tool in prompt flow offers a collection of textual templates that serve as a starting point for creating prompts. These templates, based on the Jinja2 template engine, facilitate the definition of prompts. The tool proves useful when prompt tuning is required prior to feeding the prompts into the large language model (LLM) in prompt flow.
19+
The prompt tool in prompt flow offers a collection of textual templates that serve as a starting point for creating prompts. These templates, based on the Jinja2 template engine, facilitate the definition of prompts. The tool proves useful when prompt tuning is required prior to feeding the prompts into the large language model in prompt flow.
2020

2121
## Inputs
2222

articles/machine-learning/prompt-flow/tools-reference/python-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ If you're developing a Python tool that requires calling external services with
110110

111111
### Create a custom connection
112112

113-
Create a custom connection that stores all your large language model (LLM) API key or other required credentials.
113+
Create a custom connection that stores all your large language model API key or other required credentials.
114114

115115
1. Go to prompt flow in your workspace, and then go to the **Connections** tab.
116116
1. Select **Create** > **Custom**.

0 commit comments

Comments
 (0)