From 8786470134186ba1bf72e785b6209004a28e39e9 Mon Sep 17 00:00:00 2001 From: Hadi Khazaee Asl Date: Thu, 23 Apr 2026 00:21:40 +0330 Subject: [PATCH] last ... --- AI/Interfaces/IXAIMemoryService.cs | 10 ++++++++++ AI/Models/Entities/XAiMessage.cs | 12 ++++++++++++ AI/Services/XAIMemoryService.cs | 11 +++++++++++ 3 files changed, 33 insertions(+) create mode 100644 AI/Interfaces/IXAIMemoryService.cs create mode 100644 AI/Models/Entities/XAiMessage.cs create mode 100644 AI/Services/XAIMemoryService.cs 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