This commit is contained in:
2026-04-23 00:21:40 +03:30
parent b7f6ac9d78
commit 8786470134
3 changed files with 33 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace xAiApi.AI.Interfaces
{
public interface IXAIMemoryService
{ }
}
+12
View File
@@ -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
{
}
}
+11
View File
@@ -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
{ }
}