-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
73 lines (70 loc) · 2.5 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
site_name: Agent Blueprints for Amazon Bedrock
copyright: Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
repo_name: "Github: AgentBlueprints"
repo_url: "https://github.com/awslabs/agents-for-amazon-bedrock-blueprints"
theme:
icon:
repo: fontawesome/brands/git-alt
name: material
features:
- tabs
- toc.integrate
- content.code.copy
- content.code.annotate
language: en
palette:
- scheme: default
toggle:
icon: material/weather-sunny
name: "Switch to dark mode"
primary: white
accent: purple
- scheme: slate
toggle:
icon: material/weather-night
name: "Switch to light mode"
primary: white
accent: lime
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.snippets
- admonition
- def_list
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
nav:
- Overview: 'index.md'
- What is Agents for Amazon Bedrock: './about/about-agents.md'
- Getting Started:
- '[Optional] Learn about AWS CDK': './getting-started/learn-cdk.md'
- 'Prerequisites': './getting-started/prerequisite.md'
- 'Installation': './getting-started/installation.md'
- Using Construct to Build Agents:
- 'Get Started with Constructs': './using-constructs/getting-started-with-constructs.md'
- 'Example Template Using Constructs': './using-constructs/usage.md'
- 'Customization Options': './using-constructs/features.md'
- 'Helper Constructs': './using-constructs/helper-constructs.md'
- 'Test and Deploy Constructs': './using-constructs/test-deploy.md'
- Using Templates to Build Agents:
- 'Get Started with Templates': './using-templates/getting-started-with-templates.md'
- 'Agent blueprint for function definition': './using-templates/ag-function-definition.md'
- 'Agent blueprint for return of control': './using-templates/ag-roc.md'
- 'Agent blueprints for RAG, custom Action group, and guardrails': './using-templates/ag-kb-guardrails.md'
- 'Agent blueprints for advance prompts and lambda parser': './using-templates/ag-advance-prompts-parser.md'
- 'Agent blueprint for classification': './using-templates/ag-classification.md'
- 'Prompt Library': './prompt-library/prompt-library.md'
- Support: './support/support.md'
plugins:
- search