Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e12e85d
feat: upgrade documentation theme to mkdocs-shadcn
XiaoBoAI Oct 14, 2025
6711f5a
feat: implement coy theme for code highlighting
XiaoBoAI Oct 14, 2025
5a916b4
feat: enhance code block styling with copy functionality
XiaoBoAI Oct 14, 2025
59d921b
feat: add interactive code copy button functionality
XiaoBoAI Oct 14, 2025
b5b7557
feat: optimize table rendering with text wrapping
XiaoBoAI Oct 14, 2025
1158b44
fix: restore complete documentation content from main branch
XiaoBoAI Oct 14, 2025
9dde653
docs: Add new documentation sections and update mkdocs configuration
XiaoBoAI Oct 14, 2025
ab410fd
feat: create interactive RM and Rubric libraries
XiaoBoAI Oct 15, 2025
2d20230
feat: add LLM Judge evaluation module and RL training examples
XiaoBoAI Oct 16, 2025
a617f3a
refactor: improve RL training dataset and reward function
XiaoBoAI Oct 17, 2025
e5e7a84
update
XieLipeng0830 Oct 17, 2025
771d7b1
fix: improve base dataset import with fallback mechanism
XiaoBoAI Oct 17, 2025
c101d6f
fix
XiaoBoAI Oct 17, 2025
c124abd
Update RL training and LLM judge evaluation modules
XiaoBoAI Oct 17, 2025
2e13725
Add evaluation tools and documentation
XiaoBoAI Oct 22, 2025
17e5715
Merge llm_bench into feature/upgrade-docs-theme
XiaoBoAI Oct 22, 2025
2cc2a9c
Merge origin/boyin_dgr into feature/upgrade-docs-theme
XiaoBoAI Oct 22, 2025
808e742
docs: convert tutorial notebooks to markdown and update documentation
XiaoBoAI Oct 22, 2025
dfd6589
feat: improve rubric library UI - optimize chip display and layout
XieLipeng0830 Oct 22, 2025
b2b0e85
[update] rubric_library
XieLipeng0830 Oct 22, 2025
0c2ca49
feat: convert all Jupyter notebooks to Markdown format
XiaoBoAI Oct 22, 2025
1c821b4
fix(judgebench): fix evaluation results not being stored in batch pro…
XiaoBoAI Oct 22, 2025
dfb4b04
docs(judgebench): add custom API endpoint configuration example
XiaoBoAI Oct 22, 2025
0cf423d
feat: upgrade docs theme and add conflict detector improvements
XiaoBoAI Oct 22, 2025
6567a65
Merge branch 'main' into feature/upgrade-docs-theme
XiaoBoAI Oct 22, 2025
2af64ff
refactor: unify terminology from 'principle' to 'rubric' across codebase
XiaoBoAI Oct 22, 2025
11fc348
Update conflict detector and add test files
XiaoBoAI Oct 22, 2025
ae0e142
docs: update documentation and add examples
XiaoBoAI Oct 23, 2025
ad932e7
docs: update documentation files and add sitemap
XiaoBoAI Oct 23, 2025
df3ce54
docs: restructure navigation following Diataxis framework
XiaoBoAI Oct 24, 2025
14c1901
docs: improve documentation and jupyter notebooks
XiaoBoAI Oct 24, 2025
51f04c7
docs: add evaluation frameworks comparison analysis and LLM judge res…
XiaoBoAI Oct 24, 2025
b154a30
docs: 优化文档结构和内容
XiaoBoAI Oct 24, 2025
7f022ed
docs: Add navigation scroll fix and update rubric library with datase…
XiaoBoAI Oct 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Deploy MkDocs to GitHub Pages

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-shadcn
pip install mkdocs-jupyter
pip install pymdown-extensions

- name: Build MkDocs
run: mkdocs build

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './site'

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Loading
Loading