mirror of
https://github.com/Mintplex-Labs/vector-admin.git
synced 2026-07-25 04:25:23 -04:00
Open details document make blank page Docker #170
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ilanb on GitHub (Aug 3, 2023).
Hi, tried to open cached documents after sync with Pinecone:
Document
857
Vectors
18.8 MiB
Vector Cache (MB)
When I click to open it, I see some ashes and after that quickly a blanc page (Chrome)
No error appear in logs of Docker and no error in google chrome console
@timothycarambat commented on GitHub (Aug 3, 2023):
Can you go to
http://localhost:3000/system-settingsand then using the database debug login to the VDBMS manager page.After which navigate to the documentvectors table and ensure there are records present in there. No errors in console or otherwise?
@ilanb commented on GitHub (Aug 3, 2023):
Documentation appear in the database correctly, just checked, no error in logs, please find log from docker
Log.txt
@timothycarambat commented on GitHub (Aug 3, 2023):
How were these documents embedded? It appears that they are coming across with just the name
blobwhich doesnt seem right as it should be a string and be the document's title@ilanb commented on GitHub (Aug 4, 2023):
I use OPENAI embeddings with Flowise, all documents are PDF files
@iokinpardo commented on GitHub (Aug 4, 2023):
I confirm that using Flowise to upsert into Pinecone if you don't add specific metadata it does with "blob". I hope you find this helpful
@ilanb commented on GitHub (Aug 4, 2023):
Thank you, If I understand I need to add metadata for each document in parameter ? title of document ?
@iokinpardo commented on GitHub (Aug 4, 2023):
As you can see in the image the vectors created trough Flowise inot Pinecone without setting an specific title as metadata automatically are set with "blob". Just the one I upserted with "Océanos" seems to be showing fine within "Vector Admin".
Try upserting a simple TXT file and set a title and after check with "Vector Admin".
@ilanb commented on GitHub (Aug 4, 2023):
Nice working fine !
@timothycarambat commented on GitHub (Aug 4, 2023):
Wow @iokinpardo thats a nice detail to know 👀
Closing this as it is exactly the same issue as #24. Missing
titlemetadata. Going to move away from specific metadata field enforcement 👍