- Use HTTPS for arXiv API (was returning 301 on HTTP) - Point module 01 preliminaries to root uv sync instead of separate venv - Clone nanoGPT into 01-nanogpt/ and add to .gitignore - Add llama3.1:8B to module 02 models table - Various editorial updates to modules 01 and 02 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
487 B
Text
43 lines
487 B
Text
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
llm/
|
|
llm-workshop/
|
|
|
|
# Model files and vector stores (too large for git)
|
|
*.pt
|
|
*.bin
|
|
*.pkl
|
|
models/
|
|
storage/
|
|
store/
|
|
|
|
# Keynote and slides source
|
|
*.key
|
|
|
|
# LaTeX build artifacts
|
|
*.aux
|
|
*.log
|
|
*.out
|
|
*.synctex.gz
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Editor
|
|
*.swp
|
|
*~
|
|
*.bak
|
|
|
|
# Personal notes (not part of the workshop)
|
|
*-notes.md
|
|
|
|
# Cloned repositories
|
|
01-nanogpt/nanoGPT/
|
|
|
|
# Legacy directories (not part of the workshop)
|
|
handouts/
|
|
class_demo/
|
|
slides/
|
|
cheg667-013 llm 2026.key/
|