diff --git a/src/Chat/IConditionContext.cs b/src/Chat/IConditionContext.cs index 07521d0..cfac8f4 100644 --- a/src/Chat/IConditionContext.cs +++ b/src/Chat/IConditionContext.cs @@ -1,3 +1,4 @@ +using ChatAIze.Abstractions.Databases; using ChatAIze.Abstractions.Plugins; namespace ChatAIze.Abstractions.Chat; @@ -10,6 +11,8 @@ public interface IConditionContext public IUserContext User { get; } + public IDatabaseManager Databases { get; } + public bool IsPreview { get; } public bool IsDebugModeOn { get; }