- Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Description
Although this is possible through memory storage, I’m wondering if it would be possible to add a method to access all entry IDs (i.e., all conversation IDs) directly through the ChatMemory
interface, to avoid injecting a ChatMemoryRepository
For example, in a RestController
, I would have expected to be able to do the following:
private final ChatMemory chatMemory; @GetMapping("/conversations") public List<String> getConversations() { ResponseEntity.ok().body(chatMemory.getConversationIds()); }