-
Notifications
You must be signed in to change notification settings - Fork 18
/
mkdocs.yml
87 lines (87 loc) · 2.21 KB
/
mkdocs.yml
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
79
80
81
82
83
84
85
86
87
site_name: Agent Evaluation
copyright: Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
theme:
name: material
custom_dir: docs/overrides
icon:
annotation: material/plus-circle-outline
repo: material/github
logo: logo.png
favicon: favicon.svg
font:
text: Inter
code: Roboto Mono
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: deep purple
toggle:
icon: material/weather-night
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: deep purple
toggle:
icon: material/weather-sunny
name: "Switch to light mode"
features:
- header.autohide
- content.code.copy
- content.code.annotate
- navigation.indexes
- navigation.footer
- navigation.top
- navigation.tabs
nav:
- Home: index.md
- Installation: installation.md
- User Guide: user_guide.md
- Configuration:
- configuration.md
- Evaluators:
- evaluators/index.md
- Targets:
- targets/index.md
- targets/bedrock_agents.md
- targets/bedrock_knowledge_bases.md
- targets/q_business.md
- targets/sagemaker_endpoints.md
- targets/custom_targets.md
- Hooks: hooks.md
- CLI: cli.md
- CI/CD: cicd/index.md
- Reference:
- BaseTarget: reference/base_target.md
- Hook: reference/hook.md
- TargetResponse: reference/target_response.md
- Test: reference/test.md
- TestResult: reference/test_result.md
- Trace: reference/trace.md
repo_url: https://github.com/awslabs/agent-evaluation
repo_name: awslabs/agent-evaluation
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets
- attr_list
- md_in_html
- mkdocs-click
extra:
analytics:
provider: google
property: G-KEHF0ES7XR
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings