-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into realtime-agent
- Loading branch information
Showing
86 changed files
with
4,107 additions
and
451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: mintlify docs | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
paths: | ||
- "autogen/**" | ||
- "website/**" | ||
- ".github/workflows/deploy-website-mintlify.yml" | ||
push: | ||
branches: [main] | ||
paths: | ||
- "autogen/**" | ||
- "website/**" | ||
- ".github/workflows/deploy-website-mintlify.yml" | ||
workflow_dispatch: | ||
merge_group: | ||
types: [checks_requested] | ||
permissions: | ||
contents: write | ||
jobs: | ||
checks: | ||
if: github.event_name != 'push' | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: website | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
- name: setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.8" | ||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pydoc-markdown pyyaml termcolor nbconvert | ||
# Pin databind packages as version 4.5.0 is not compatible with pydoc-markdown. | ||
pip install databind.core==4.4.2 databind.json==4.4.2 | ||
- name: Install quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Generate API documentation | ||
run: | | ||
python ./process_api_reference.py | ||
working-directory: website | ||
|
||
- name: Convert Jupyter notebooks to MDX | ||
run: | | ||
python ./process_notebooks.py render | ||
working-directory: website | ||
|
||
- name: Prepare website content | ||
run: | | ||
# Create a temporary directory for filtered content | ||
mkdir -p temp_website | ||
# Copy files except .ipynb, node_modules, .quarto, .gitignore, and temp_website | ||
find . -type f -not -path "*/node_modules/*" -not -path "*/.quarto/*" -not -path "./temp_website/*" -not -name "*.ipynb" -not -name ".gitignore" -exec cp --parents {} temp_website/ \; | ||
mintlify-release: | ||
if: github.event_name != 'pull_request' | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: website | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
- name: setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.8" | ||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pydoc-markdown pyyaml termcolor nbconvert | ||
# Pin databind packages as version 4.5.0 is not compatible with pydoc-markdown. | ||
pip install databind.core==4.4.2 databind.json==4.4.2 | ||
- name: Install quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Generate API documentation | ||
run: | | ||
python ./process_api_reference.py | ||
working-directory: website | ||
|
||
- name: Convert Jupyter notebooks to MDX | ||
run: | | ||
python ./process_notebooks.py render | ||
working-directory: website | ||
|
||
- name: Prepare website content | ||
run: | | ||
# Create a temporary directory for filtered content | ||
mkdir -p temp_website | ||
# Copy files except .ipynb, node_modules, .quarto, .gitignore, and temp_website | ||
find . -type f -not -path "*/node_modules/*" -not -path "*/.quarto/*" -not -path "./temp_website/*" -not -name "*.ipynb" -not -name ".gitignore" -exec cp --parents {} temp_website/ \; | ||
- name: Deploy to Mintlify | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: mintlify-pages | ||
publish_dir: ./website/temp_website |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,121 +1,47 @@ | ||
name: docs | ||
name: Deploy Redirect Page | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
path: | ||
- "autogen/*" | ||
- "website/*" | ||
- ".github/workflows/deploy-website.yml" | ||
push: | ||
branches: [main] | ||
path: | ||
- "autogen/*" | ||
- "website/*" | ||
paths: | ||
- ".github/workflows/deploy-website.yml" | ||
workflow_dispatch: | ||
merge_group: | ||
types: [checks_requested] | ||
permissions: | ||
contents: write | ||
jobs: | ||
checks: | ||
if: github.event_name != 'push' | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: website | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
- name: setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- name: pydoc-markdown install | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pydoc-markdown pyyaml termcolor | ||
# Pin databind packages as version 4.5.0 is not compatible with pydoc-markdown. | ||
pip install databind.core==4.4.2 databind.json==4.4.2 | ||
- name: pydoc-markdown run | ||
run: | | ||
pydoc-markdown | ||
- name: quarto install | ||
working-directory: ${{ runner.temp }} | ||
run: | | ||
wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-amd64.tar.gz | ||
tar -xzf quarto-1.5.23-linux-amd64.tar.gz | ||
echo "$(pwd)/quarto-1.5.23/bin/" >> $GITHUB_PATH | ||
- name: Process notebooks | ||
run: | | ||
python process_notebooks.py render | ||
- name: Test Build | ||
run: | | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile --ignore-engines | ||
yarn build | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
npm run build | ||
else | ||
npm i --legacy-peer-deps | ||
npm run build | ||
fi | ||
gh-release: | ||
if: github.event_name != 'pull_request' | ||
deploy: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: website | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
- name: setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- name: pydoc-markdown install | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pydoc-markdown pyyaml termcolor | ||
# Pin databind packages as version 4.5.0 is not compatible with pydoc-markdown. | ||
pip install databind.core==4.4.2 databind.json==4.4.2 | ||
- name: pydoc-markdown run | ||
run: | | ||
pydoc-markdown | ||
- name: quarto install | ||
working-directory: ${{ runner.temp }} | ||
run: | | ||
wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.5.23/quarto-1.5.23-linux-amd64.tar.gz | ||
tar -xzf quarto-1.5.23-linux-amd64.tar.gz | ||
echo "$(pwd)/quarto-1.5.23/bin/" >> $GITHUB_PATH | ||
- name: Process notebooks | ||
run: | | ||
python process_notebooks.py render | ||
- name: Build website | ||
run: | | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile --ignore-engines | ||
yarn build | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
npm run build | ||
else | ||
npm i --legacy-peer-deps | ||
npm run build | ||
fi | ||
# Step 1: Check out the repository | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Step 2: Create a fresh redirect HTML file | ||
- name: Create redirect HTML | ||
run: | | ||
mkdir -p dist | ||
cat > dist/index.html << 'EOF' | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="refresh" content="0; url=https://ag2ai.mintlify.app"> | ||
<script>window.location.href = "https://ag2ai.mintlify.app";</script> | ||
<title>Page Redirection</title> | ||
</head> | ||
<body> | ||
If you are not redirected automatically, follow this <a href="https://ag2ai.mintlify.app">link to the new documentation</a>. | ||
</body> | ||
</html> | ||
EOF | ||
# Step 3: Deploy to gh-pages branch | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# Build output to publish to the `gh-pages` branch: | ||
publish_dir: ./website/build | ||
publish_dir: ./dist | ||
force_orphan: true | ||
user_name: 'github-actions[bot]' | ||
user_email: 'github-actions[bot]@users.noreply.github.com' | ||
commit_message: 'Deploy redirect page' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ | |
"yaml", | ||
"yml", | ||
"pdf", | ||
"mdx", | ||
] | ||
UNSTRUCTURED_FORMATS = [ | ||
"doc", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.