Skip to content

Commit 5695ac2

Browse files
Release v0.1.0
1 parent 9bd0d2b commit 5695ac2

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
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"

autochecklist/registry.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
)

mkdocs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
site_name: autochecklist
2+
site_url: https://autochecklist.github.io/docs/
23
site_description: A library of checklist generation and scoring methods for evaluation
34
repo_url: https://github.com/ChicagoHAI/AutoChecklist
45
repo_name: ChicagoHAI/AutoChecklist
@@ -7,8 +8,7 @@ theme:
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
@@ -46,6 +46,9 @@ nav:
4646
- Custom Prompts: user-guide/custom-prompts.md
4747
- Providers: user-guide/providers.md
4848

49+
extra_css:
50+
- overrides/extra.css
51+
4952
markdown_extensions:
5053
- admonition
5154
- pymdownx.highlight:

0 commit comments

Comments
 (0)