File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - name : Push to docs repo
1919 run : |
2020 git clone https://x-access-token:${{ secrets.AutoChecklist_DOCS_PAT }}@github.com/autochecklist/autochecklist.github.io.git docs-repo
21- cp -r site/* docs-repo/
21+ mkdir -p docs-repo/docs
22+ rm -rf docs-repo/docs/*
23+ cp -r site/* docs-repo/docs/
2224 cd docs-repo
2325 git config user.name "github-actions[bot]"
2426 git config user.email "github-actions[bot]@users.noreply.github.com"
Original file line number Diff line number Diff line change @@ -456,9 +456,9 @@ def register_custom_pipeline(
456456 elif scorer is not None :
457457 # Legacy path: map old scorer name string to config dict
458458 warnings .warn (
459- f "The 'scorer' parameter is deprecated. Use 'scorer_mode' and "
460- f "'primary_metric' instead (e.g., scorer_mode='item', "
461- f "primary_metric='weighted')." ,
459+ "The 'scorer' parameter is deprecated. Use 'scorer_mode' and "
460+ "'primary_metric' instead (e.g., scorer_mode='item', "
461+ "primary_metric='weighted')." ,
462462 DeprecationWarning ,
463463 stacklevel = 2 ,
464464 )
Original file line number Diff line number Diff line change 11site_name : autochecklist
2+ site_url : https://autochecklist.github.io/docs/
23site_description : A library of checklist generation and scoring methods for evaluation
34repo_url : https://github.com/ChicagoHAI/AutoChecklist
45repo_name : ChicagoHAI/AutoChecklist
78 name : material
89 palette :
910 - scheme : default
10- primary : indigo
11- accent : indigo
11+ custom_dir : docs/overrides
1212 features :
1313 - navigation.tabs
1414 - navigation.sections
4646 - Custom Prompts : user-guide/custom-prompts.md
4747 - Providers : user-guide/providers.md
4848
49+ extra_css :
50+ - overrides/extra.css
51+
4952markdown_extensions :
5053 - admonition
5154 - pymdownx.highlight :
You can’t perform that action at this time.
0 commit comments