Skip to content

Commit d0b3a8e

Browse files
authored
Fix typos in AI documents (#48006)
1 parent f191dd7 commit d0b3a8e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/ai/conceptual/how-genai-and-llms-work.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ For example, given the user input *Give me three ideas for a healthy breakfast i
4646

4747
Some generative AI applications produce image outputs from natural language inputs. Depending on the application and its models, users might be able to specify:
4848

49-
- The people or things to appear the image
49+
- The people or things to appear in the image
5050
- The artistic style to create the image in
5151
- References for generating similar images
5252

docs/ai/conceptual/understanding-openai-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The Kernel builds the `tools` parameter of a request based on your decorators, o
5151

5252
## Token counts
5353

54-
Function descriptions are include in the system message of your request to a model. These function descriptions count against your model's [token limit](/azure/ai-services/openai/quotas-limits) and are [included in the cost of the request](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/).
54+
Function descriptions are included in the system message of your request to a model. These function descriptions count against your model's [token limit](/azure/ai-services/openai/quotas-limits) and are [included in the cost of the request](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/).
5555

5656
If your request exceeds the model's token limit, try the following modifications:
5757

docs/ai/conceptual/vector-databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Vector databases and their search features are especially useful in [RAG pattern
3434
1. Store and index the embeddings in a vector database or search service.
3535
1. Convert user prompts from your application to embeddings.
3636
1. Run a vector search across your data, comparing the user prompt embedding to the embeddings your database.
37-
1. Use a language model such as GPT-35 or GPT-4 to assembly a user friendly completion from the vector search results.
37+
1. Use a language model such as GPT-35 or GPT-4 to assemble a user friendly completion from the vector search results.
3838

3939
Visit the [Implement Azure OpenAI with RAG using vector search in a .NET app](../tutorials/tutorial-ai-vector-search.md) tutorial for a hands-on example of this flow.
4040

docs/ai/conceptual/zero-shot-learning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Intent:
3232

3333
There are two primary use cases for zero-shot learning:
3434

35-
- **Work with fined-tuned LLMs** - Because it relies on the model's existing knowledge, zero-shot learning is not as resource-intensive as few-shot learning, and it works well with LLMs that have already been fined-tuned on instruction datasets. You might be able to rely solely on zero-shot learning and keep costs relatively low.
35+
- **Work with fined-tuned LLMs** - Because it relies on the model's existing knowledge, zero-shot learning is not as resource-intensive as few-shot learning, and it works well with LLMs that have already been fine-tuned on instruction datasets. You might be able to rely solely on zero-shot learning and keep costs relatively low.
3636
- **Establish performance baselines** - Zero-shot learning can help you simulate how your app would perform for actual users. This lets you evaluate various aspects of your model's current performance, such as accuracy or precision. In this case, you typically use zero-shot learning to establish a performance baseline and then experiment with few-shot learning to improve performance.
3737

3838
## Few-shot learning

docs/ai/get-started-mcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dotnet add package ModelContextProtocol --prerelease
6868

6969
Instead of building unique connectors for each integration point, you can often leverage or reference prebuilt integrations from various providers such as GitHub and Docker:
7070

71-
- [Available MPC clients](https://modelcontextprotocol.io/clients)
71+
- [Available MCP clients](https://modelcontextprotocol.io/clients)
7272
- [Available MCP servers](https://modelcontextprotocol.io/examples)
7373

7474
### Integration with Microsoft.Extensions.AI

docs/ai/microsoft-extensions-ai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ As with other `IChatClient` implementations, the `RateLimitingChatClient` can be
146146

147147
:::code language="csharp" source="snippets/microsoft-extensions-ai/ConsoleAI.CustomClientMiddle/Program.cs":::
148148

149-
To simplify the composition of such components with others, component authors should create a `Use*` extension method for registering the component into a pipeline. For example, consider the following `UseRatingLimiting` extension method:
149+
To simplify the composition of such components with others, component authors should create a `Use*` extension method for registering the component into a pipeline. For example, consider the following `UseRateLimiting` extension method:
150150

151151
:::code language="csharp" source="snippets/microsoft-extensions-ai/AI.Shared/RateLimitingChatClientExtensions.cs" id="one":::
152152

docs/ai/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Millions of developers use .NET to create applications that run on the web, on m
2525
The opportunities with AI are near endless. Here are a few examples of solutions you can build using AI in your .NET applications:
2626

2727
* Language processing: Create virtual agents or chatbots to talk with your data and generate content and images.
28-
* Computer vision: Identify objects in an object or video.
28+
* Computer vision: Identify objects in an image or video.
2929
* Audio generation: Use synthesized voices to interact with customers.
3030
* Classification: Label the severity of a customer-reported issue.
3131
* Task automation: Automatically perform the next step in a workflow as tasks are completed.

0 commit comments

Comments
 (0)