Skip to content

Commit

Permalink
Merge pull request #450 from superlinked/update-HR-chatbot-article
Browse files Browse the repository at this point in the history
Update rag_hr_chatbot.md
  • Loading branch information
robertdhayanturner authored Aug 11, 2024
2 parents c22af9c + b4b67e3 commit e3ce63a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/rag_hr_chatbot.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ text_old = r_old.text.replace("\r\n", "\n").split("\n")


text_df = pd.DataFrame(text_new + text_old, columns=["body"]).reset_index()
# add timestamps to diffentiate the two sources
# add timestamps to differentiate the two sources
text_df["creation_date"] = [int(datetime(2024, 1, 1).timestamp())] * len(text_new) + [
int(datetime(2023, 1, 1).timestamp())
] * len(text_old)
Expand Down

0 comments on commit e3ce63a

Please sign in to comment.