Skip to content

Commit c7beb2c

Browse files
changes from dev to main
1 parent c3e807e commit c7beb2c

32 files changed

+16
-16
lines changed

.github/workflows/azure-dev.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Azure Template Validation
22
on:
3-
# workflow_dispatch:
4-
push:
5-
branches:
6-
- dev
3+
workflow_dispatch:
74

85
permissions:
96
contents: read

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
# Generic Build your own copilot Solution Accelerator
1+
# Document Generation Solution Accelerator
22

3-
MENU: [**USER STORY**](#user-story) \| [**ONE-CLICK DEPLOY**](#one-click-deploy) \| [**SUPPORTING DOCUMENTS**](#supporting-documents)
3+
MENU: [**USER STORY**](#user-story) \| [**ONE-CLICK DEPLOY**](#one-click-deploy) \| [**SUPPORTING DOCUMENTS**](#supporting-documents) \|
4+
[**CUSTOMER TRUTH**](#customer-truth)
45

56

67
<h2><img src="./docs/images/userStory.png" width="64">
78
<br/>
89
User story
910
</h2>
1011

11-
### Overview
12+
**Solution accelerator overview**
1213

13-
This solution accelerator is a powerful tool that helps you create your own AI assistant(s). The accelerator can be used by any customer looking for reusable architecture and code snippets to build an AI assistant(s) with their own enterprise data.
14+
This solution accelerator is a powerful tool that helps you create your own AI assistant for document generation. The accelerator can be used by any customer looking for reusable architecture and code snippets to build an AI assistant to generate a sample template and content grounded on their own enterprise data.
15+
16+
It leverages Azure OpenAI Service and Azure AI Search, to identify relevant documents, summarize unstructured information, and generate document templates.
1417

15-
It leverages Azure AI Foundry, Azure OpenAI Service and Azure AI Search, to identify relevant documents, summarize unstructured information, and generate Word document templates using your own data.
1618

1719
### Key features
1820

@@ -22,13 +24,14 @@ Below is an image of the solution.
2224

2325
![Landing Page](/docs/images/landing_page.png)
2426

25-
### Scenario
27+
**Scenario**
2628

2729
This example focuses on a generic use case - chat with your own data, generate a document template using your own data, and exporting the document in a docx format.
2830

2931
The sample data is sourced from generic AI-generated promissory notes.
3032
The documents are intended for use as sample data only.
3133

34+
3235
### Solution accelerator architecture
3336
![image](/docs/images/architecture.png)
3437

@@ -37,7 +40,7 @@ The documents are intended for use as sample data only.
3740
QUICK DEPLOY
3841
</h2>
3942

40-
| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator) | [![Open in Dev Containers](https://img.shields.io/static/v1?style=for-the-badge&label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator) | [![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2FGeneric-Build-your-own-copilot-Solution-Accelerator%2Fmain%2Finfra%2Fmain.json) |
43+
| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/document-generation-solution-accelerator) | [![Open in Dev Containers](https://img.shields.io/static/v1?style=for-the-badge&label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/document-generation-solution-accelerator) | [![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2Fdocument-generation-solution-accelerator%2Fmain%2Finfra%2Fmain.json) |
4144
|---|---|---|
4245

4346

@@ -95,7 +98,7 @@ You can run this solution using GitHub Codespaces. The button will open a web-ba
9598

9699
1. Open the solution accelerator (this may take several minutes):
97100

98-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator)
101+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/microsoft/document-generation-solution-accelerator)
99102
2. Accept the default values on the create Codespaces page
100103
3. Open a terminal window if it is not already open
101104
4. Continue with the [deploying steps](#deploying)
@@ -112,7 +115,7 @@ You can run this solution in VS Code Dev Containers, which will open the project
112115
1. Start Docker Desktop (install it if not already installed)
113116
2. Open the project:
114117

115-
[![Open in Dev Containers](https://img.shields.io/static/v1?style=for-the-badge&label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator)
118+
[![Open in Dev Containers](https://img.shields.io/static/v1?style=for-the-badge&label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/document-generation-solution-accelerator)
116119

117120

118121
3. In the VS Code window that opens, once the project files show up (this may take several minutes), open a terminal window.
@@ -137,7 +140,7 @@ If you're not using one of the above options for opening the project, then you'l
137140
2. Download the project code:
138141

139142
```shell
140-
azd init -t microsoft/Generic-Build-your-own-copilot-Solution-Accelerator/
143+
azd init -t microsoft/document-generation-solution-accelerator/
141144
```
142145

143146
3. Open the project folder in your terminal or editor.
@@ -153,7 +156,7 @@ If you're not using one of the above options for opening the project, then you'l
153156

154157
Click the following deployment button to create the required resources for this solution directly in your Azure Subscription.
155158

156-
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2FGeneric-Build-your-own-copilot-Solution-Accelerator%2Fmain%2Finfra%2Fmain.json)
159+
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2Fdocument-generation-solution-accelerator%2Fmain%2Finfra%2Fmain.json)
157160

158161
</details>
159162

@@ -218,7 +221,7 @@ https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-regi
218221
219222
2. Click the following deployment button to create the required resources for this accelerator in your Azure Subscription.
220223
221-
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2FGeneric-Build-your-own-copilot-Solution-Accelerator%2Fmain%2Finfrastructure%2Fdeployment.json)
224+
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2Fdocument-generation-solution-accelerator%2Fmain%2Finfrastructure%2Fdeployment.json)
222225
223226
3. You will need to select an Azure Subscription, create/select a Resource group, and Region. If your intention is to deploy this solution accelerator and the corresponding sample data set, the default settings will suffice.
224227
-13.6 KB
Binary file not shown.
-13.3 KB
Binary file not shown.
-12.6 KB
Binary file not shown.
-12.6 KB
Binary file not shown.
-13.4 KB
Binary file not shown.
-12.2 KB
Binary file not shown.
-13.7 KB
Binary file not shown.
-13.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)