mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-28 10:39:23 +00:00
24 lines
567 B
Bash
Executable File
24 lines
567 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
set -o xtrace
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")"; pwd)"
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
mkdir -p ../_dist
|
|
rsync -ruv --exclude node_modules . ../_dist
|
|
cd ../_dist
|
|
poetry run python scripts/model_feat_table.py
|
|
cp ../cookbook/README.md src/pages/cookbook.mdx
|
|
cp ../.github/CONTRIBUTING.md docs/contributing.md
|
|
mkdir -p docs/templates
|
|
cp ../templates/docs/INDEX.md docs/templates/index.md
|
|
wget https://raw.githubusercontent.com/langchain-ai/langserve/main/README.md -O docs/langserve.md
|
|
|
|
yarn
|
|
|
|
quarto preview docs
|