Skip to content

Commit

Permalink
comment out response['answer']
Browse files Browse the repository at this point in the history
  • Loading branch information
weitsung50110 committed Nov 20, 2024
1 parent f0d13b0 commit e366725
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion langchain_rag_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
'input': input_text,
'context': context
})
print(response['answer'])
# print(response['answer'])
# context = response['context']
print("-------------------")
print(response)
Expand Down
2 changes: 1 addition & 1 deletion langchain_rag_doc_chroma.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
'input': input_text,
'context': context
})
print(response['answer'])
# print(response['answer'])
# context = response['context']
print("-------------------")
print(response)
Expand Down
2 changes: 1 addition & 1 deletion langchain_rag_doc_restrict.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
'input': input_text,
'context': context
})
print(response['answer'])
# print(response['answer'])
# context = response['context']
print("-------------------")
print(response)
Expand Down

0 comments on commit e366725

Please sign in to comment.