Expose loaded documents list #623
TomaszGrzmilas
started this conversation in
2. Feature requests
Replies: 2 comments 1 reply
-
Do you want to see what documents have been indexed? I'm looking into this as well. Wondering if instead of exposing just the documents, we just make the |
Beta Was this translation helpful? Give feedback.
0 replies
-
I created a draft PR that would expose this via the list of memories, but not sure if this is the right approach or not. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
It should be possible to list all documents that are loaded into memory:
var memory = new MemoryClientBuilder()
.WithOpenAIDefaults("ssdsd1234")
.Build();
foreach (var doc in memory .GetLoadedDocuments())
{
Console.WriteLine($" * {doc .SourceName} -- {doc ..LastUpdate:D}");
}
Beta Was this translation helpful? Give feedback.
All reactions