Skip to content

Commit a201238

Browse files
authored
fixed typos, added 1.1.9 (#125)
1 parent d3af309 commit a201238

1 file changed

Lines changed: 23 additions & 21 deletions

File tree

README.md

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Upcoming relases will support more Semantic Kernel and Azure Open AI functionali
3232
* Assistants: Create and manage virtual assistants that can handle complex tasks and interactions.
3333
* Semantic Search: Perform searches based on the meaning of the text rather than just keywords, improving search relevance.
3434

35-
# Getting-Started in 4 Steps
35+
# Quick-Start Steps
3636
To get started, follow the steps below:
3737
1. Clone this repository
3838
```
@@ -47,7 +47,7 @@ To get started, follow the steps below:
4747
```
4848
3. Add your Open AI or Azure Open AI key to configuration (via *dotnet user-secrets set* command)
4949
```
50-
cd src/Presentation.WebAPI
50+
cd src/Presentation.WebApi
5151
dotnet user-secrets set "OpenAI:ApiKey" "YOUR_API_KEY"
5252
```
5353
```
@@ -70,6 +70,7 @@ To get started, follow the steps below:
7070
dotnet run --project Presentation.WebApi/Presentation.WebApi.csproj
7171
dotnet run --project Presentation.Blazor/Presentation.Blazor.csproj
7272
```
73+
# Note: By default, Presentation.WebApi runs on http://localhost:7777 and Presentation.Blazor runs on http://localhost:5000 unless configured otherwise.
7374

7475
# Install Prerequisites
7576
You will need the following tools:
@@ -109,14 +110,14 @@ Follow these steps to get your development environment set up:
109110
```
110111

111112
## Setup Azure Open AI or Open AI configuration
112-
**Important:** Do this for both Presentation.WebAPI and Specs.Infrastructure
113+
**Important:** Do this for both Presentation.WebApi and Tests.Specs.Integration
113114
### Azure Open AI
114115
```
115-
cd src/Presentation.WebAPI
116+
cd src/Presentation.WebApi
116117
dotnet user-secrets set "AzureOpenAI:ChatDeploymentName" "gpt-4"
117118
dotnet user-secrets set "AzureOpenAI:Endpoint" "https://YOUR_ENDPOINT.openai.azure.com/"
118119
dotnet user-secrets set "AzureOpenAI:ApiKey" "YOUR_API_KEY"
119-
cd src/Tests.Specs.Integration
120+
cd ../Tests.Specs.Integration
120121
dotnet user-secrets set "AzureOpenAI:ChatDeploymentName" "gpt-4"
121122
dotnet user-secrets set "AzureOpenAI:Endpoint" "https://YOUR_ENDPOINT.openai.azure.com/"
122123
dotnet user-secrets set "AzureOpenAI:ApiKey" "YOUR_API_KEY"
@@ -129,9 +130,9 @@ AzureOpenAI__ApiKey
129130
```
130131

131132
### Open AI
132-
Set API Key in both Presention.WebAPI and Tests/Specs.Integration projects
133+
Set API Key in both Presentation.WebApi and Tests.Specs.Integration projects
133134
```
134-
cd src/Presentation.WebAPI
135+
cd src/Presentation.WebApi
135136
dotnet user-secrets set "OpenAI:ApiKey" "YOUR_API_KEY"
136137
cd ../Tests.Specs.Integration
137138
dotnet user-secrets set "OpenAI:ApiKey" "YOUR_API_KEY"
@@ -177,7 +178,7 @@ dotnet user-secrets set "ConnectionStrings:DefaultConnection" "YOUR_SQL_CONNECTI
177178
## Launch the backend
178179
Right-click Presentation.WebApi and select Set as Default Project
179180
```
180-
dotnet run Presentation.WebApi.csproj
181+
dotnet run --project src/Presentation.WebApi/Presentation.WebApi.csproj
181182
```
182183

183184
## Open http://localhost:7777/swagger/index.html
@@ -292,18 +293,19 @@ The key differences between Entity Framework (EF) and Semantic Kernel memory:
292293

293294
# Version History
294295

295-
| Version | Date | Release Notes |
296-
|---------|-------------|-------------------------------------------|
297-
| 1.0.0 | 2024-Aug-05 | Initial WebAPI Release |
298-
| 1.0.1 | 2024-Oct-27 | Updated Azure IaC ESA/CAF Standards |
299-
| 1.0.2 | 2025-Jan-19 | Updated to .NET 9 and SK 1.33 |
300-
| 1.0.3 | 2025-Feb-09 | Remove projects from File-New Project |
301-
| 1.1.0 | 2025-Jun-04 | Blazor copilot-ish UX, AuthorSession |
302-
| 1.1.1 | 2025-Jun-07 | Authors, Sessions & Messages Plugins |
303-
| 1.1.2 | 2025-Aug-16 | Deprecated Specflow,Automapper |
304-
| 1.1.5 | 2025-Aug-18 | Deprecated FluentValidation/Assertions |
305-
| 1.1.6 | 2025-Aug-19 | Fixed blazor copilot chat runtime error |
306-
| 1.1.7 | 2025-Aug-22 | Deprecated MediatR |
307-
| 1.1.8 | 2025-Aug-23 | Updated docs. Fixed runtime message post |
296+
| Version | Date | Release Notes |
297+
|---------|-------------|------------------------------------------------------------------|
298+
| 1.0.0 | 2024-Aug-05 | Initial WebAPI Release |
299+
| 1.0.1 | 2024-Oct-27 | Updated Azure IaC ESA/CAF Standards |
300+
| 1.0.2 | 2025-Jan-19 | Updated to .NET 9 and SK 1.33 |
301+
| 1.0.3 | 2025-Feb-09 | Remove projects from File-New Project |
302+
| 1.1.0 | 2025-Jun-04 | Blazor copilot-ish UX, AuthorSession |
303+
| 1.1.1 | 2025-Jun-07 | Authors, Sessions & Messages Plugins |
304+
| 1.1.2 | 2025-Aug-16 | Deprecated Specflow, Automapper (removed from solution) |
305+
| 1.1.5 | 2025-Aug-18 | Deprecated FluentValidation/Assertions (removed from solution) |
306+
| 1.1.6 | 2025-Aug-19 | Fixed blazor copilot chat runtime error |
307+
| 1.1.7 | 2025-Aug-22 | Deprecated MediatR (removed from solution) |
308+
| 1.1.8 | 2025-Aug-23 | Updated docs. Fixed runtime message post |
309+
| 1.1.9 | 2025-Oct-31 | Added build/test precursor, plugin compatibility, improved code coverage |
308310

309311
This project is licensed with the [MIT license](https://mit-license.org/).

0 commit comments

Comments
 (0)