LLMMemory

interface LLMMemory(source)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun add(memoryId: LLMMemoryId, messages: List<Message>): LLMResult<LLMMemoryId>
Link copied to clipboard
abstract fun create(messages: List<Message> = emptyList()): LLMResult<LLMMemoryId>
Link copied to clipboard
abstract fun delete(memoryId: LLMMemoryId): LLMResult<LLMMemoryId>
Link copied to clipboard
abstract fun read(memoryId: LLMMemoryId): LLMResult<List<Message>>
Link copied to clipboard
abstract fun update(memoryId: LLMMemoryId, messages: List<Message>): LLMResult<LLMMemoryId>