ca79346f26
Implement IMemoryStore interface and MemoryStore using EF Core with SQLite for conversation and knowledge persistence. Includes DI service registration extensions.
11 lines
214 B
C#
11 lines
214 B
C#
namespace Luna.Memory;
|
|
|
|
/// <summary>
|
|
/// Responsible for writes from the running agent
|
|
/// </summary>
|
|
public interface IMemoryStore
|
|
{
|
|
Task AddMemoryAsync(string memory);
|
|
Task<string> GetMemoriesAsync();
|
|
}
|