Skip to content

Commit a75a398

Browse files
committed
Update 2026-02-05 04:17:16
1 parent 58dfc3f commit a75a398

File tree

160 files changed

+9165
-9989
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+9165
-9989
lines changed

README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<link rel="preload" as="script" href="_static/scripts/pydata-sphinx-theme.js?digest=dfe6caa3a7d634c4db9b" />
4040
<script src="_static/vendor/fontawesome/6.5.2/js/all.min.js?digest=dfe6caa3a7d634c4db9b"></script>
4141

42-
<script src="_static/documentation_options.js?v=813c3936"></script>
42+
<script src="_static/documentation_options.js?v=44cba1c8"></script>
4343
<script src="_static/doctools.js?v=9bcbadda"></script>
4444
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
4545
<script src="_static/clipboard.min.js?v=a7894cd8"></script>

_downloads/b67911656ef5d18c4ae36cb6741b7965/Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,22 @@ markdown:
4444
echo "Exporting docs to Markdown..."; \
4545
mkdir -p "$(BUILDDIR)/html/markdown"; \
4646
\
47-
# 1) Copy .md and .rst files under subdirectories only (exclude root-level files) \
48-
find $(SOURCEDIR) -mindepth 2 -path "*/_build/*" -prune -o \( -name "*.md" -o -name "*.rst" \) -print0 | \
47+
# 1) Copy .md and .rst files as-is; additionally convert .rst -> .md \
48+
find $(SOURCEDIR) -path "*/_build/*" -prune -o \( -name "*.md" -o -name "*.rst" \) -print0 | \
4949
parallel -0 -j3 --halt soon,fail=1 ' \
5050
SRC="{}"; \
5151
REL_DIR=$$(dirname "$$SRC"); \
5252
OUT_DIR="$(BUILDDIR)/html/markdown/$$REL_DIR"; \
5353
mkdir -p "$$OUT_DIR"; \
5454
cp -f "$$SRC" "$$OUT_DIR/"; \
55+
case "$$SRC" in \
56+
*.rst) \
57+
BASE=$$(basename "$$SRC" .rst); \
58+
pandoc -f rst -t gfm "$$SRC" -o "$$OUT_DIR/$$BASE.md" ;; \
59+
esac \
5560
' || exit 1; \
5661
\
57-
# 2) Convert .ipynb -> .md (all notebooks, including root if any) \
62+
# 2) Convert .ipynb -> .md \
5863
find $(SOURCEDIR) -path "*/_build/*" -prune -o -name "*.ipynb" -print0 | \
5964
parallel -0 -j3 --halt soon,fail=1 ' \
6065
NB_SRC="{}"; \
@@ -72,6 +77,7 @@ markdown:
7277
echo "Markdown artifacts written to: $(BUILDDIR)/html/markdown"
7378

7479

80+
7581
# Serve documentation with auto-build and live reload
7682
serve:
7783
@echo "Starting auto-build server at http://0.0.0.0:$(PORT)"

_sources/advanced_features/lora.ipynb

Lines changed: 347 additions & 360 deletions
Large diffs are not rendered by default.

_sources/advanced_features/separate_reasoning.ipynb

Lines changed: 127 additions & 150 deletions
Large diffs are not rendered by default.

_sources/advanced_features/speculative_decoding.ipynb

Lines changed: 535 additions & 304 deletions
Large diffs are not rendered by default.

_sources/advanced_features/structured_outputs.ipynb

Lines changed: 162 additions & 192 deletions
Large diffs are not rendered by default.

_sources/advanced_features/structured_outputs_for_reasoning_models.ipynb

Lines changed: 163 additions & 186 deletions
Large diffs are not rendered by default.

_sources/advanced_features/tool_parser.ipynb

Lines changed: 242 additions & 253 deletions
Large diffs are not rendered by default.

_sources/advanced_features/vlm_query.ipynb

Lines changed: 247 additions & 241 deletions
Large diffs are not rendered by default.

_sources/basic_usage/native_api.ipynb

Lines changed: 331 additions & 319 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)