Skip to content

Commit cf6e743

Browse files
committed
Add health documents to files, fix AI Search and bing grounding agents, update readme
1 parent e5a44cc commit cf6e743

17 files changed

+82
-60
lines changed

.env.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
AI_FOUNDRY_PROJECT_ENDPOINT=
22
BING_GROUNDING_CONNECTION_ID=
33
AI_SEARCH_CONNECTION_ID=
4+
AI_SEARCH_INDEX_NAME=
45
AI_MODEL=gpt-4o

6/Benefit_Options.pdf

532 KB
Binary file not shown.
569 KB
Binary file not shown.
554 KB
Binary file not shown.

6/PerksPlus.pdf

113 KB
Binary file not shown.
File renamed without changes.

6/employee_handbook.pdf

140 KB
Binary file not shown.
File renamed without changes.

6/role_library.pdf

222 KB
Binary file not shown.

README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,36 @@ This demo originally started out using the code from the [Azure AI Agent QuickSt
1313

1414
![Demo Prompts](./images/prompts.png)
1515

16-
To use the demo you'll need to complete the steps in the [QuickStart](https://learn.microsoft.com/azure/ai-services/agents/quickstart?pivots=programming-language-javascript) to set up your Azure AI Foundry project. If you'd like to use the AI Search/RAG functionality in the demo, you'll find details about the setup in the [AI Search tooling](https://learn.microsoft.com/azure/ai-services/agents/how-to/tools/azure-ai-search?tabs=azurecli%2Cjavascript&pivots=code-examples) document.
16+
## AI Foundry Project Setup
17+
18+
To use the demo you'll need to create an Azure AI Foundry project by following the [QuickStart](https://learn.microsoft.com/azure/ai-services/agents/quickstart?pivots=programming-language-javascript).
19+
20+
## AI Search Tooling Setup
21+
22+
If you'd like to use the AI Search/RAG functionality in the demo, you'll find details about the setup in the [AI Search tooling](https://learn.microsoft.com/azure/ai-services/agents/how-to/tools/azure-ai-search?tabs=azurecli%2Cjavascript&pivots=code-examples) document. You'll need to:
23+
24+
- Add the health documents in `files` to an Azure Blob Storage container.
25+
- Import the health documents into an Azure AI Search index using the [Azure AI Search Importer](https://learn.microsoft.com/en-us/azure/search/search-get-started-portal-import-vectors).
26+
- Create a connection to the AI Search resource in your AI Foundry project. See [Azure AI Search Importer](https://learn.microsoft.com/azure/ai-services/agents/how-to/tools/azure-ai-search?tabs=azurecli%2Cjavascript&pivots=code-examples#import-documents-into-an-index).
27+
28+
## Bing Grounding Tooling Setup
29+
30+
If you'd like to use the Bing Grounding functionality in the demo, you'll find details about the setup in the [Bing Grounding tooling](https://learn.microsoft.com/azure/ai-services/agents/how-to/tools/bing-grounding?tabs=azurecli%2Cjavascript&pivots=code-examples) document.
1731

1832
## Running the Demo
1933

2034
After going through the QuickStart steps (and optionally the AI Search and Bing Grounding tooling setup), perform the following steps:
2135

2236
1. Rename `.env.template` to `.env`.
2337

24-
1. Assign your Azure AI Foundry endpoint, your AI Search and Bing Grounding connection name from Azure AI Foundry, and (optionally) the model deployment name to the `.env` file keys.
38+
1. Assign your Azure AI Foundry endpoint, your AI Search connection ID, the AI Search index name, and the Bing Grounding connection ID from Azure AI Foundry to the appropriate env keys. You can optionally change the model deployment name.
39+
40+
```bash
41+
AI_FOUNDRY_PROJECT_ENDPOINT=https://<your-endpoint>.services.ai.azure.com/api/projects/<your-project>
42+
AI_SEARCH_CONNECTION_ID=/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.CognitiveServices/accounts/<account-name>/projects/<project-name>/connections/<connection-name>
43+
AI_SEARCH_INDEX_NAME=<your-index-name>
44+
BING_GROUNDING_CONNECTION_ID=/subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.CognitiveServices/accounts/<account-name>/projects/<project-name>/connections/<connection-name>
45+
```
2546

2647
1. Install the project dependencies:
2748

@@ -34,3 +55,5 @@ After going through the QuickStart steps (and optionally the AI Search and Bing
3455
npm start
3556
```
3657

58+
1. Select an agent demo to run.
59+

0 commit comments

Comments
 (0)