From 9ed4ad9ba1bb3322728cb2177a1af5d6e8266eb5 Mon Sep 17 00:00:00 2001 From: Tao Chen Date: Fri, 17 Mar 2023 16:48:06 -0700 Subject: [PATCH 1/2] Add sample 4 to main readme --- README.md | 1 + samples/apps/github-qna-webapp-react/README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c46285218b1..276480ad78e0 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ and try these examples: | [Simple chat summary](samples/apps/chat-summary-webapp-react/README.md) | Use ready-to-use skills and get those skills into your app easily. | | [Book creator](samples/apps/book-creator-webapp-react/README.md) | Use planner to deconstruct a complex goal and envision using the planner in your app. | | [Authentication and APIs](samples/apps/auth-api-webapp-react/README.md) | Use a basic connector pattern to authenticate and connect to an API and imagine integrating external data into your app's LLM AI. | +| [Github repository Q&A](samples/apps/github-qna-webapp-react/README.md) | Use embeddings and memory to store recent data and allow you to query against it. | For a more hands-on overview, you can also run the [Getting Started notebook](samples/notebooks/dotnet/Getting-Started-Notebook.ipynb), diff --git a/samples/apps/github-qna-webapp-react/README.md b/samples/apps/github-qna-webapp-react/README.md index 068742ebddac..5ef64494a5b0 100644 --- a/samples/apps/github-qna-webapp-react/README.md +++ b/samples/apps/github-qna-webapp-react/README.md @@ -15,7 +15,7 @@ ## About the GitHub Repo Q&A Bot Sample -The GitHub Repo Q&A Bot sample allows you to pull in data from a public GitHub repo into a local memory store in order to ask questions about the project and to get answers about it. The sample highlights how [memory](https://aka.ms/sk/memories) and [embeddings](https://aka.ms/sk/embeddings) work along with X SK Functions when the size of the data is larger than the allowed token limited. Each SK function will call Open AI to perform the tasks you ask about.​ +The GitHub Repo Q&A Bot sample allows you to pull in data from a public GitHub repo into a local memory store in order to ask questions about the project and to get answers about it. The sample highlights how [memory](https://aka.ms/sk/memories) and [embeddings](https://aka.ms/sk/embeddings) work along with X SK Functions when the size of the data is larger than the allowed token limited. Each SK function will call Open AI to perform the tasks you ask about.​ > [!CAUTION] > Each function will call Open AI which will use tokens that you will be billed for. From 10f4c8ae959fe48c42461bc7ea2d14477fe7cd76 Mon Sep 17 00:00:00 2001 From: Tao Chen Date: Fri, 17 Mar 2023 16:58:27 -0700 Subject: [PATCH 2/2] Fix typo --- samples/apps/github-qna-webapp-react/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/apps/github-qna-webapp-react/README.md b/samples/apps/github-qna-webapp-react/README.md index 5ef64494a5b0..ac67aa344bda 100644 --- a/samples/apps/github-qna-webapp-react/README.md +++ b/samples/apps/github-qna-webapp-react/README.md @@ -15,7 +15,7 @@ ## About the GitHub Repo Q&A Bot Sample -The GitHub Repo Q&A Bot sample allows you to pull in data from a public GitHub repo into a local memory store in order to ask questions about the project and to get answers about it. The sample highlights how [memory](https://aka.ms/sk/memories) and [embeddings](https://aka.ms/sk/embeddings) work along with X SK Functions when the size of the data is larger than the allowed token limited. Each SK function will call Open AI to perform the tasks you ask about.​ +The GitHub Repo Q&A Bot sample allows you to pull in data from a public GitHub repo into a local memory store in order to ask questions about the project and to get answers about it. The sample highlights how [memory](https://aka.ms/sk/memories) and [embeddings](https://aka.ms/sk/embeddings) work along with SK Functions when the size of the data is larger than the allowed token limited. Each SK function will call Open AI to perform the tasks you ask about.​ > [!CAUTION] > Each function will call Open AI which will use tokens that you will be billed for.