From b4b67e3804bd2be42740ad0dc477132dacb8a081 Mon Sep 17 00:00:00 2001 From: robertturner <143536791+robertdhayanturner@users.noreply.github.com> Date: Sun, 11 Aug 2024 04:41:23 +0200 Subject: [PATCH] Update rag_hr_chatbot.md small correction --- docs/articles/rag_hr_chatbot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/articles/rag_hr_chatbot.md b/docs/articles/rag_hr_chatbot.md index c9e19a70c..696c8df8c 100644 --- a/docs/articles/rag_hr_chatbot.md +++ b/docs/articles/rag_hr_chatbot.md @@ -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)