14 lines
276 B
Bash
Executable File
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!"
|