sglang_v0.5.2/flashinfer_0.3.1/docs/build_docs.sh

14 lines
276 B
Bash
Executable File

#!/bin/bash
set -eo pipefail
set -x
echo "Building FlashInfer documentation..."
make clean
make SPHINXOPTS='-T -v' html
# Add RunLLM widget to generated HTML files
echo "Adding RunLLM widget to documentation..."
python3 wrap_run_llm.py
echo "Documentation build complete!"