Spaces:
Runtime error
Runtime error
File size: 904 Bytes
7f7b773 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
document_loader:
_target_: document_loader.grobid.GrobidLoader
grobid_parser:
_target_: langchain.document_loaders.parsers.GrobidParser
segment_sentences: false
grobid_server: http://localhost:8070/api/processFulltextDocument
text_splitter:
_target_: text_splitter.spacy.SpacySplitter
text_embedding:
_target_: text_embedding.huggingface.HuggingFaceTextEmbedding
vector_store:
_target_: vector_store.faiss.FAISSVectorStore
document_retriever:
_target_: document_retriever.simple_retriever.SimpleDocumentRetriever
question_answering:
_target_: question_answering.huggingface.HuggingFaceQuestionAnswering
storage_path:
base: /data/tommaso/llm4scilit/data
documents: ${storage_path.base}/papers
documents_processed: ${storage_path.documents}_processed
vector_store: ${storage_path.base}/vector_store
mode: interactive
debug:
is_debug: true
force_rebuild_storage: false
|