mirror of
https://github.com/vectorize-io/hindsight.git
synced 2026-09-14 19:31:49 +08:00
47be07f97f
* 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
14 lines
261 B
Bash
Executable File
14 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."
|