From 8552565bdac24f1cbba1d33417bb2bbce78a9f53 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Mon, 6 Oct 2025 16:03:04 -0500 Subject: [PATCH] Add missing comma in imports in README (#865) --- pkg/llms_from_scratch/README.md | 2 +- setup/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/llms_from_scratch/README.md b/pkg/llms_from_scratch/README.md index 326f9f2..b66ce9c 100644 --- a/pkg/llms_from_scratch/README.md +++ b/pkg/llms_from_scratch/README.md @@ -155,7 +155,7 @@ For more information about KV caching, please see the [KV cache README](../../ch ```python from llms_from_scratch.qwen3 import ( - load_weights_into_qwen + load_weights_into_qwen, Qwen3Model, Qwen3Tokenizer, ) diff --git a/setup/README.md b/setup/README.md index 22ce200..78b9940 100644 --- a/setup/README.md +++ b/setup/README.md @@ -61,7 +61,7 @@ There are many good options for code editors. My preferred choice is the popular ## VSCode Extensions -If you are using Visual Studio Code (VSCode) as your primary code editor, you can find recommended extensions in the `.vscode` subfolder. These extensions provide enhanced functionality and tools helpful for this repositoy. +If you are using Visual Studio Code (VSCode) as your primary code editor, you can find recommended extensions in the `.vscode` subfolder. These extensions provide enhanced functionality and tools helpful for this repository. To install these, open this "setup" folder in VSCode (File -> Open Folder...) and then click the "Install" button in the pop-up menu on the lower right.