17 lines
375 B
C#
17 lines
375 B
C#
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(AiContextType uicontext, BaseContextSummary context);
|
|
}
|
|
}
|