Spaces:
Running
Running
File size: 430 Bytes
a30f2aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
@startuml doc_ingest
actor User
participant "DocumentIngestor" as ingestor
participant "VectorDB" as vectordb
User -> ingestor : ingest_document(file_location, collection_name)
activate ingestor
ingestor -> vectordb : pdf_to_vec(file_location, collection_name)
activate vectordb
vectordb --> ingestor : vectordb
deactivate vectordb
ingestor --> User : "Document processed and ingested successfully"
deactivate ingestor
@enduml
|