EduConnect / docs /utils /doc_ingest_seq.puml
dtyago's picture
Plant UML docs
a30f2aa
raw
history blame contribute delete
430 Bytes
@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