Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
dd2d504
Bicep Standard Changes
Kingshuk-Microsoft Aug 26, 2025
510a47a
avm changes 1
Kingshuk-Microsoft Sep 5, 2025
c9eb239
bicep changes
Kingshuk-Microsoft Sep 9, 2025
c6d9bf7
feat: Fixed build issues
Prajwal-Microsoft Sep 9, 2025
e9ab3a7
resourcedeployment ps changes
Kingshuk-Microsoft Sep 9, 2025
adca3cd
output variables added
Kingshuk-Microsoft Sep 9, 2025
2412c4f
feat: Added Modules for Cosmos, Conainer Registry, App Config
Prajwal-Microsoft Sep 9, 2025
314ad40
Merge branch 'kings-dkm-dev' of https://github.com/microsoft/Document…
Prajwal-Microsoft Sep 9, 2025
e86deb7
feat: Added Changes for Deployment script to remove the deployment re…
Prajwal-Microsoft Sep 9, 2025
fd4d917
fieat: Updated the power shell script
Prajwal-Microsoft Sep 9, 2025
ec2a094
fix: Added DIsable local Auth for Now Waf deployment to work
Prajwal-Microsoft Sep 9, 2025
471381b
fix: Added prmopt for Email Ifd
Prajwal-Microsoft Sep 9, 2025
090fc7a
fix: Removed unwanted keys from AppConfig
Prajwal-Microsoft Sep 9, 2025
c0e78db
feat: Implemented Identity based Authentication
Prajwal-Microsoft Sep 10, 2025
d896727
feat: Removed unwanted sections from Power shell script
Prajwal-Microsoft Sep 10, 2025
5414d29
feat: Working for WAF aligned change
Prajwal-Microsoft Sep 10, 2025
23a2edd
feat: Added WAF aligned params for AKS
Prajwal-Microsoft Sep 10, 2025
f996a4e
deployment guide azd changes
Kingshuk-Microsoft Sep 11, 2025
e13f9ac
deployment steps altered
Kingshuk-Microsoft Sep 11, 2025
cd9ce22
feat: Added parameters.json & waf version of it, fixed bicep warnings
Prajwal-Microsoft Sep 11, 2025
851a163
Merge branch 'kings-dkm-dev' of https://github.com/microsoft/Document…
Prajwal-Microsoft Sep 11, 2025
e3c42bc
feat: added customizingAzdParameters.md and changes for DeploymentGuide
Kingshuk-Microsoft Sep 11, 2025
dca79ee
changed model value
Kingshuk-Microsoft Sep 11, 2025
58289cd
changed default value of embedding model
Kingshuk-Microsoft Sep 11, 2025
57ded83
fix: WAF + EXP issue with bicep
Prajwal-Microsoft Sep 11, 2025
afe3ea2
docs: Updated the Deployment Guide
Prajwal-Microsoft Sep 12, 2025
705f61b
Merge pull request #457 from microsoft/kings-dkm-dev
Prajwal-Microsoft Sep 12, 2025
962f0c1
Merge remote-tracking branch 'origin/dev' into waf-prdc
Prajwal-Microsoft Sep 12, 2025
74470e7
feat: Added created by in the tags
Prajwal-Microsoft Sep 12, 2025
0cb6a25
docs: Updated deployment guide and information message
Prajwal-Microsoft Sep 12, 2025
6a0cce9
feat: Cleaning up of old code
Prajwal-Microsoft Sep 12, 2025
37ac9cb
fix: Added Metadata in azure.yaml file
Prajwal-Microsoft Sep 12, 2025
970a8dd
docs: Updated deployment guide
Prajwal-Microsoft Sep 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using Microsoft.GS.DPS.Storage.AISearch;
using Microsoft.GS.DPSHost.AppConfiguration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.GS.DPSHost.Helpers;

namespace Microsoft.GS.DPSHost.ServiceConfiguration
{
Expand All @@ -31,7 +32,7 @@ public static void Inject(IHostApplicationBuilder builder)
return Kernel.CreateBuilder()
.AddAzureOpenAIChatCompletion(deploymentName: builder.Configuration.GetSection("Application:AIServices:GPT-4o-mini")["ModelName"] ?? "",
endpoint: builder.Configuration.GetSection("Application:AIServices:GPT-4o-mini")["Endpoint"] ?? "",
apiKey: builder.Configuration.GetSection("Application:AIServices:GPT-4o-mini")["Key"] ?? "")
credentials: AzureCredentialHelper.GetAzureCredential())

.Build();
})
Expand Down Expand Up @@ -66,7 +67,7 @@ public static void Inject(IHostApplicationBuilder builder)
.AddSingleton<TagUpdater>(x =>
{
var services = x.GetRequiredService<IOptions<Services>>().Value;
return new TagUpdater(services.AzureAISearch.Endpoint, services.AzureAISearch.APIKey);
return new TagUpdater(services.AzureAISearch.Endpoint, AzureCredentialHelper.GetAzureCredential());

})

Expand Down
1 change: 1 addition & 0 deletions App/backend-api/Microsoft.GS.DPS/Microsoft.GS.DPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<ItemGroup>
<PackageReference Include="AutoMapper" Version="14.0.0" />
<PackageReference Include="Azure.Identity" Version="1.14.1" />
<PackageReference Include="Azure.Search.Documents" Version="11.6.1" />
<PackageReference Include="FluentValidation" Version="12.0.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Linq;
using System.Threading.Tasks;
using Azure;
using Azure.Core;
using Azure.Search.Documents;
using Azure.Search.Documents.Models;

Expand All @@ -12,9 +13,9 @@ public class TagUpdater
{
private readonly SearchClient _searchClient;

public TagUpdater(string searchEndPoint, string searchAPIKey, string indexName = "default")
public TagUpdater(string searchEndPoint, TokenCredential tokenCredential, string indexName = "default")
{
_searchClient = new SearchClient(new Uri(searchEndPoint), indexName, new AzureKeyCredential(searchAPIKey));
_searchClient = new SearchClient(new Uri(searchEndPoint), indexName, tokenCredential);
}

public async Task UpdateTags(string documentId, List<string> updatingTags)
Expand Down
238 changes: 0 additions & 238 deletions App/kernel-memory/infra/main.bicep

This file was deleted.

Loading