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
Copy file name to clipboardExpand all lines: docs/ai/dotnet-ai-ecosystem.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ Azure offers many other AI services to build specific application capabilities a
63
63
64
64
.NET apps can also connect to local AI models for many different development scenarios. [Semantic Kernel](https://github.com/microsoft/semantic-kernel) is the recommended tool to connect to local models using .NET. Semantic Kernel can connect to many different models hosted across a variety of platforms and abstracts away lower-level implementation details.
65
65
66
-
For example, you can use [Ollama](https://ollama.com/) to [connect to local AI models with .NET](quickstarts/quickstart-local-ai.md), including several small language models (SLMs) developed by Microsoft:
66
+
For example, you can use [Ollama](https://ollama.com/) to [connect to local AI models with .NET](/dotnet/ai/quickstarts/chat-local-model), including several small language models (SLMs) developed by Microsoft:
Copy file name to clipboardExpand all lines: docs/ai/get-started/dotnet-ai-overview.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
@@ -36,16 +36,16 @@ We recommend the following sequence of tutorials and articles for an introductio
36
36
37
37
| Scenario | Tutorial |
38
38
|----------|----------|
39
-
| Create a chat application |[Build an Azure AI chat app with .NET](../quickstarts/get-started-openai.md)|
40
-
| Summarize text |[Summarize text using Azure AI chat app with .NET](../quickstarts/quickstart-openai-summarize-text.md)|
41
-
| Chat with your data |[Get insight about your data from an .NET Azure AI chat app](../quickstarts/quickstart-ai-chat-with-data.md)|
42
-
| Call .NET functions with AI |[Extend Azure AI using tools and execute a local function with .NET](../quickstarts/quickstart-azure-openai-tool.md)|
43
-
| Generate images |[Generate images using Azure AI with .NET](../quickstarts/quickstart-openai-generate-images.md)|
39
+
| Create a chat application |[Build an Azure AI chat app with .NET](/dotnet/ai/quickstarts/build-chat-app)|
40
+
| Summarize text |[Summarize text using Azure AI chat app with .NET](/dotnet/ai/quickstarts/prompt-model)|
41
+
| Chat with your data |[Get insight about your data from an .NET Azure AI chat app](/dotnet/ai/quickstarts/build-vector-search-app)|
42
+
| Call .NET functions with AI |[Extend Azure AI using tools and execute a local function with .NET](/dotnet/ai/quickstarts/use-function-calling)|
43
+
| Generate images |[Generate images using Azure AI with .NET](/dotnet/ai/quickstarts/generate-images)|
44
44
| Train your own model |[ML.NET tutorial](https://dotnet.microsoft.com/learn/ml-dotnet/get-started-tutorial/intro)|
45
45
46
46
Browse the table of contents to learn more about the core concepts, starting with [How generative AI and LLMs work](../conceptual/how-genai-and-llms-work.md).
47
47
48
48
## Next steps
49
49
50
-
-[Quickstart: Build an Azure AI chat app with .NET](../quickstarts/get-started-openai.md)
50
+
-[Quickstart: Build an Azure AI chat app with .NET](/dotnet/ai/quickstarts/build-chat-app)
51
51
-[Video series: Machine Learning and AI with .NET](/shows/machine-learning-and-ai-with-dotnet-for-beginners)
Copy file name to clipboardExpand all lines: docs/ai/quickstarts/chat-local-model.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ In this quickstart, you learn how to create a conversational .NET console chat a
20
20
21
21
## Run the local AI model
22
22
23
-
Complete the following steps to configure and run a local AI Model on your device. Many different AI models are available to run locally and are trained for different tasks, such as generating code, analyzing images, generative chat, or creating embeddings. For this quickstart, you'll use the general purpose `phi3:mini` model, which is a small but capable generative AI created by Microsoft.
23
+
Complete the following steps to configure and run a local AI model on your device. Many different AI models are available to run locally and are trained for different tasks, such as generating code, analyzing images, generative chat, or creating embeddings. For this quickstart, you'll use the general purpose `phi3:mini` model, which is a small but capable generative AI created by Microsoft.
24
24
25
25
1. Open a terminal window and verify that Ollama is available on your device:
26
26
@@ -54,7 +54,7 @@ Complete the following steps to configure and run a local AI Model on your devic
54
54
55
55
## Create the .NET app
56
56
57
-
Complete the following steps to create a .NET console app that will connect to your local`phi3:mini` AI model:
57
+
Complete the following steps to create a .NET console app that connects to your local`phi3:mini` AI model.
58
58
59
59
1. In a terminal window, navigate to an empty directory on your device and create a new app with the `dotnet new` command:
0 commit comments