using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BeWo.Service.Core { public static class PathHelper { #region AI private static string GetAiPath() => Path.Combine(getRoot(), "AI"); public static string GetAiSystemPromptPath() => Path.Combine(GetAiPath(), "systemPrompts"); #endregion private static string getRoot() => MergedConfig.GetSetting(WebConfigSetting.BeWoPlanerServiceRoot); } }