-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
78 lines (74 loc) · 2.01 KB
/
Copy pathmkdocs.yml
File metadata and controls
78 lines (74 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
site_name: ghostrun
site_description: >-
CI-native LLM evals for real applications: record LLM API calls once,
replay them deterministically in pytest, and catch semantic regressions
before they ship.
site_url: https://ghostrun.parthmax.in/
repo_url: https://github.com/parthmax2/ghostrun
repo_name: parthmax2/ghostrun
edit_uri: edit/main/doc/
docs_dir: doc
site_dir: _mkdocs_build
theme:
name: material
logo: assets/ghost-icon.svg
favicon: assets/ghost-icon.svg
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.top
- navigation.tabs
- navigation.sections
- navigation.footer
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.action.edit
- toc.follow
markdown_extensions:
- meta
- toc:
permalink: true
- admonition
- footnotes
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Home: index.md
- Guide:
- Recording and replay: guide/recording.md
- Semantic assertions: guide/assertions.md
- Prompt regression tracking: guide/regression-tracking.md
- Configuration: guide/configuration.md
- API reference: guide/api-reference.md
- Why not just ask an LLM?: guide/why-not-diy.md
- Research:
- Judge-voting benchmark: judge-voting-benchmark.md
- Comparison with other tools: comparison.md