From 6465267e0561ea79a2522261c18d666cd4f9b0b8 Mon Sep 17 00:00:00 2001 From: Martijn van de Rijdt Date: Thu, 13 Mar 2025 11:26:41 -0400 Subject: [PATCH] Update day1.ipynb correction in the deepseek response length check --- week2/day1.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/week2/day1.ipynb b/week2/day1.ipynb index 7371667..5768371 100644 --- a/week2/day1.ipynb +++ b/week2/day1.ipynb @@ -485,7 +485,7 @@ "\n", "print(reasoning_content)\n", "print(content)\n", - "print(\"Number of words:\", len(reply.split(\" \")))" + "print(\"Number of words:\", len(content.split(\" \")))" ] }, {