Skip to content

Commit 8896759

Browse files
authored
Fix missing link (#76)
1 parent 0ced202 commit 8896759

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Several folders contain optional materials as a bonus for interested readers:
119119
- [Optional Python Setup and Cloud GPU Recommendations](ch02/02_setup-tips)
120120
- [Using a GPU-optimized version of the LLM](ch02/03_optimized-LLM)
121121
- [Using `torch.compile()` on Windows](ch02/04_torch-compile-windows)
122-
- [Run inference and chat with the model]()
122+
- [Run inference and chat with the model](ch02/05_use_model)
123123
- **Chapter 3: Evaluating LLMs**
124124
- [MATH-500 Verifier Scripts](ch03/02_math500-verifier-scripts)
125125
- **Appendix F: Common Approaches to LLM Evaluation**

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies = [
2525
"torch>=2.7.1",
2626
"tokenizers>=0.21.2",
2727
"nbformat>=5.10.4",
28-
"sympy>=1.14.0", # For verifier in ch03
28+
"sympy>=1.14.0", # For verifier in ch03
2929
]
3030

3131
classifiers = [
@@ -51,6 +51,7 @@ dev = [
5151

5252
extra = [
5353
"datasets>=4.1.1", # Appendix F, MMLU
54+
"chainlit>=2.8.3", # Appendix G, Chat UI
5455
]
5556

5657
[tool.setuptools.packages.find]

0 commit comments

Comments
 (0)