Skip to content

Commit

Permalink
Test dict docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zMardone committed Jul 18, 2024
1 parent ffa5213 commit 4e429fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/indexer/indexer_file_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ def index_file_url(self, content_base, **kwargs) -> bool:
self.text_splitter,
load_type=load_type
)
print("DOCS: ", docs)
# PRINTA ISSO AQUI E DESCOBRE PQ TA INDO VAZIO NO INDEX_DOCUMENTS
dict_docs = [doc.dict() for doc in docs]
print("DICT_DOCS: ", dict_docs)
print("DICT_DOCS.__dict__: ", dict_docs.__dict__)

try:
print("Start index_documents_content")
Expand Down

0 comments on commit 4e429fc

Please sign in to comment.