This commit is contained in:
2026-06-02 15:04:35 +02:00
parent 168a36ebb5
commit b315621832
2 changed files with 0 additions and 44 deletions

View File

@@ -598,7 +598,6 @@
<Compile Include="ServiceProxy\XRechnungApiClient.cs" />
<Compile Include="ServiceProxy\ServiceFacade.cs" />
<Compile Include="ServiceUtils\DataContractLoader.cs" />
<Compile Include="ServiceUtils\AiFunctionContextLoader.cs" />
<Compile Include="ServiceUtils\DistanceCalculator\AddressRouteManager.cs" />
<Compile Include="ServiceUtils\DistanceCalculator\AddressRouteMatrix.cs" />
<Compile Include="ServiceUtils\DistanceCalculator\GoogleDistanceMatrixAPI.cs" />

View File

@@ -1,43 +0,0 @@
using AICore.Context.Summary;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BS.Shared;
using BS.Shared.DataContracts.Feature.AI.Functions.ServiceRecords;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AICore.Context.Core;
using BS.Shared.DataContracts;
namespace BeWo.Service.ServiceUtils
{
public class AiFunctionContextLoader
{
public static BaseContextSummary LoadServiceRecordDocumentationContext(AiFunctionDocRequest request, int samplesCount)
{
IEnumerable<ServiceRecordDC> srs_loaded = null;
if(samplesCount > 0)
{
var srs = request.ServiceRecords;
srs_loaded = DataContractLoader.LoadServiceRecordDCs(srs)
.OrderByDescending(x => x.Start)
.Take(samplesCount);
}
var sc_ref = request.SupportConcept;
var sc_loaded = DataContractLoader.LoadSupportConceptDC(sc_ref);
var customer_loaded = sc_loaded.Customer;
var costbearer_loaded = sc_loaded.CostBearerList.First(x => request.CostBearer.Oid == x.CostBearerOid);
var doku = request.Dokumentation;
var context = AiContextSummaryFactory.CreateServiceRecordDocumentationFunction(srs_loaded, customer_loaded, costbearer_loaded, sc_loaded, doku);
return context;
}
}
}