2025-07-28 10:35:34 +02:00
|
|
|
|
using AICore.Context.Summary;
|
|
|
|
|
|
using BS.Shared;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace AICore.Context.SummaryParser
|
|
|
|
|
|
{
|
2025-09-08 15:17:51 +02:00
|
|
|
|
internal abstract class BaseContextSummaryParser
|
2025-07-28 10:35:34 +02:00
|
|
|
|
{
|
|
|
|
|
|
public abstract string Parse(AiContextType uicontext, BaseContextSummary context);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|