Skip to content

Commit 82add61

Browse files
Copilotelbruno
andcommitted
Add references to additional code samples in all lesson 3 docs
Co-authored-by: elbruno <[email protected]>
1 parent 406b4ef commit 82add61

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

03-CoreGenerativeAITechniques/01-lm-completions-functions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ When building AI applications you are not limited to just text-based interaction
137137
There are a couple of setup steps you need to take in order to call functions with MEAI.
138138

139139
> 🧑‍💻**Sample code**: [Here is a working example of function calling](./src/MEAIFunctions/) you can follow along with. To run this example, follow the same steps as for the previous examples, but navigate to `03-CoreGenerativeAITechniques/src/MEAIFunctions` directory.
140+
>
141+
> We also have examples showing function calling with [Azure OpenAI](./src/MEAIFunctionsAzureOpenAI/) and [Ollama](./src/MEAIFunctionsOllama/).
140142
141143
1. First, of course, define the function that you want the chatbot to be able to call. In this example we're going to get the weather forecast.
142144

03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ We'll use the Microsoft.Extension.AI along with the [Microsoft.Extensions.Vector
3838
> 🧑‍💻**Sample code:** You can follow along with the [sample code here](./src/RAGSimple-02MEAIVectorsMemory/).
3939
>
4040
> You can also see how to implement a RAG app [using Semantic Kernel by itself in our sample source code here](./src/RAGSimple-01SK/).
41+
>
42+
> We have additional RAG examples for different vector stores and models:
43+
> - [RAGSimple-03MEAIVectorsAISearch](./src/RAGSimple-03MEAIVectorsAISearch/) - Using Azure AI Search as a vector store
44+
> - [RAGSimple-04MEAIVectorsQdrant](./src/RAGSimple-04MEAIVectorsQdrant/) - Using Qdrant as a vector store
45+
> - [RAGSimple-10SKOllama](./src/RAGSimple-10SKOllama/) - Using Semantic Kernel with Ollama
46+
> - [RAGSimple-15Ollama-DeepSeekR1](./src/RAGSimple-15Ollama-DeepSeekR1/) - Using Ollama with DeepSeek-R1 model
4147
4248
### Populating the knowledge store
4349

03-CoreGenerativeAITechniques/03-vision-audio.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ Ok - so we're going to put the model through its paces and ask it if it can tell
2121
![A composite showing both images the example will use. The first is several runners but only showing their legs. The second is a German restaurant receipt](./images/example-visual-image.png)
2222

2323
> 🧑‍💻**Sample code**: You can follow [along with sample code here](./src/Vision-01MEAI-GitHubModels/).
24+
>
25+
> We also have examples showing vision capabilities with:
26+
> - [Ollama](./src/Vision-02MEAI-Ollama/) - Using local Ollama models for vision tasks
27+
> - [Azure OpenAI](./src/Vision-03MEAI-AOAI/) - Using Azure OpenAI for vision tasks
28+
> - [Azure OpenAI with Spectre UI](./src/Vision-04MEAI-AOAI-Spectre/) - A more advanced UI using the Spectre console library
2429
2530
1. We're using MEAI and GitHub Models, so instantiate the `IChatClient` as we have been. Also start to create a chat history.
2631

03-CoreGenerativeAITechniques/04-agents.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ We'll be working with a couple of new concepts in order to build an AI agent in
2020

2121
> 🧑‍💻**Sample code**: We'll be working from the [AgentLabs-01-Simple sample](./src/AgentLabs-01-Simple/) for this lesson.
2222
>
23-
> We did include some more advanced samples in the `/src/` folder as well. You can view the README's of [AgentLabs-02-Functions](./src/AgentLabs-02-Functions/) or [AgentLabs-03-OpenAPIs](./src/AgentLabs-03-OpenAPIs/) or [AgentLabs-03-PythonParksInformationServer](./src/AgentLabs-03-PythonParksInformationServer/) for more info on them.
23+
> We also have more advanced agent examples:
24+
> - [AgentLabs-02-Functions](./src/AgentLabs-02-Functions/) - Showing how to create custom functions for your agents
25+
> - [AgentLabs-03-OpenAPIs](./src/AgentLabs-03-OpenAPIs/) - Demonstrating how agents can use OpenAPI specifications
26+
> - [AgentLabs-03-PythonParksInformationServer](./src/AgentLabs-03-PythonParksInformationServer/) - A Python server that works with the OpenAPI example
2427
2528
### Azure AI Agent Service
2629

0 commit comments

Comments
 (0)