diff --git a/AI/Interfaces/IXAIMemoryService.cs b/AI/Interfaces/IXAIMemoryService.cs new file mode 100644 index 0000000..c533667 --- /dev/null +++ b/AI/Interfaces/IXAIMemoryService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace xAiApi.AI.Interfaces +{ + public interface IXAIMemoryService + { } +} \ No newline at end of file diff --git a/AI/Models/Entities/XAiMessage.cs b/AI/Models/Entities/XAiMessage.cs new file mode 100644 index 0000000..50ed820 --- /dev/null +++ b/AI/Models/Entities/XAiMessage.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace xAiApi.AI.Models.Entities +{ + public class XAiMessage + { + + } +} \ No newline at end of file diff --git a/AI/Services/XAIMemoryService.cs b/AI/Services/XAIMemoryService.cs new file mode 100644 index 0000000..8695a18 --- /dev/null +++ b/AI/Services/XAIMemoryService.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using xAiApi.AI.Interfaces; + +namespace xAiApi.AI.Services +{ + public class XAIMemoryService : IXAIMemoryService + { } +} \ No newline at end of file