* bump pg0 0.11.x and improve documentation * bump pg0 0.11.x and improve documentation * bump pg0 0.11.x and improve documentation * ci: test notebooks on ci * ci: test notebooks on ci * rm llms-full from repo * formatting * formatting
13 lines
261 B
Bash
Executable file
13 lines
261 B
Bash
Executable file
#!/bin/bash
|
|
# Sync cookbook content from hindsight-cookbook repository
|
|
# Converts notebooks to markdown and updates the docs
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "Syncing cookbook..."
|
|
uv run sync-cookbook
|
|
|
|
echo ""
|
|
echo "Done! Run 'npm run serve' to preview."
|