Files
Luna/Luna.Memory/IMemoryStore.cs
T
darman ca79346f26 Add Luna.Memory with SQLite-backed persistent memory store
Implement IMemoryStore interface and MemoryStore using EF Core with
SQLite for conversation and knowledge persistence. Includes DI
service registration extensions.
2026-04-04 04:11:08 +02:00

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();
}