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 { internal abstract class BaseContextSummaryParser { public abstract string Parse(AiActionType actionType, BaseContextSummary context); } }