forked from aws-samples/amazon-bedrock-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
169 lines (165 loc) · 7.8 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# Project
site_name: Amazon Bedrock Recipes
copyright: Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
site_author: Bedrock-GTM
site_description: Amazon Bedrock cookbook website
site_url: https://github.amazon-bedrock-samples.com
# Repository
repo_name: "Github: Amazon-Bedrock-Samples"
repo_url: "https://github.com/aws-samples/amazon-bedrock-samples/tree/main"
# Plugins
plugins:
- tags:
# tags_hierarchy: true
tags_file: 'general/tags.md'
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- minify:
minify_html: true
- tags:
tags: false
tags_allowed:
- Agents
- Multi-Agent-Collaboration
- Knowledge-Bases
- RAG
- Prompt-Engineering
- Langchain
- LlamaIndex
- Evaluation
- Embedding
- Batch-Inference
- Fine-Tuning
- Custom-Model-Import
- LLM-as-Judge
- Responsible-AI
- Guardrails
# # extras and additional configuration
extra:
generator: false
tags:
Compatibility: compat
social:
- icon: fontawesome/brands/github
link: https://github.com/aws-samples/amazon-bedrock-samples/tree/main
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
<a href="https://github.com/aws-samples/amazon-bedrock-samples/issues/new?title=[Online Feedback]: Short-Summary-of-Issue&body=Page URL: {url}" target="_blank" rel="noopener">creating an issue</a>.
extra_javascript:
- javascript/feedback.js
# Theme
theme:
name: material
logo: logo.png
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/git-alt
features:
- tags
- toc.integrate
- content.code.copy
- content.code.select
- content.code.annotate
- navigation.footer
# - navigation.sections
# - navigation.tabs
- search.highlight
- search.suggest
language: en
palette:
- scheme: default
primary: white
accent: purple
favicon: assets/favicon.png
# Extensions
markdown_extensions:
- attr_list
- admonition
- pymdownx.superfences
- def_list
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.mark
# Website Page Tree
nav:
- Home: 'index.md'
# - Get Started: 'general/get-started.md'
- Features:
- Intro to Amazon Bedrock:
- API Usage:
- Invoke Model API Example : './introduction-to-bedrock/bedrock_apis/01_invoke_api.md'
- Agents API Example: './introduction-to-bedrock/bedrock_apis/04_agents_api.md'
- Knowledge Bases API Example: './introduction-to-bedrock/bedrock_apis/03_knowledgebases_api.md'
- Guardrail API Example: './introduction-to-bedrock/bedrock_apis/02_guardrails_api.md'
- Converse API Example: './introduction-to-bedrock/converse_api/01_converse_api.md'
- Agents:
- Create Agent Examples:
- How to create an Agent: './agents-and-function-calling/introduction-to-agents/how_to_create_custom_agents.md'
- Multi Agent:
- Multi Agent Orchestration: './agents-and-function-calling/introduction-to-agents/how_to_create_multi_agents_from_custom_agents.md'
- Function Calling:
- Function Calling with Converse: './agents-and-function-calling/function-calling/function_calling_with_converse/function_calling_with_converse.md'
- Function Calling with Invoke: './agents-and-function-calling/function-calling//function_calling_with_invoke/function_calling_model_with_invoke.md'
- Return of Control: './agents-and-function-calling/function-calling/return_of_control/return_of_control.md'
- Tool Binding: './agents-and-function-calling/function-calling/tool_binding/tool_bindings.md'
- Open Source:
- CrewAI:
- Find Dream Destination with CrewAI: './agents-and-function-calling/open-source-agents/crew.ai/Find dream destination with CrewAI.md'
- LangGraph:
- LangGraph Agent with Function Calling: './agents-and-function-calling/open-source-agents/langgraph/langgraph-single-agent.md'
- LangGraph Multi-Modal Agent with Function Calling: './agents-and-function-calling/open-source-agents/langgraph/langgraph-agents-multimodal.md'
- LangGraph Multi Agent Orchestration: './agents-and-function-calling/open-source-agents/langgraph/langgraph-multi-agent-sql-tools.md'
- LangGraph Multi Agent For Medical Chatbot: './agents-and-function-calling/open-source-agents/langgraph/02_medibot_V3_agents.md'
- LangGraph Fact Checker with Multi Agent: './agents-and-function-calling/open-source-agents/langgraph/langgraph-fact-checker-feedback-loop.md'
- LangGraph Multi Agent With SQL tools: './agents-and-function-calling/open-source-agents/langgraph/langgraph-multi-agent-sql-tools.md'
- LangGraph Multi Agent with tools: './agents-and-function-calling/open-source-agents/langgraph/03_langgraph_agents_of_agent.md'
- RAG:
- Knowledge Bases:
- Optimizing Retrieval Results:
- Advanced Chunking Strategies: './rag/knowledge-bases/feature-examples/02-optimizing-accuracy-retrieved-results/advanced_chunking_options.md'
- RAG Advanced Concepts:
- Dynamic Metadata Filtering: './rag/knowledge-bases/feature-examples/03/dynamic-metadata-filtering/dynamic-metadata-filtering-KB.md'
- Open Source:
- Chatbot using Langchain: './rag/open-source/chatbots/qa_chatbot_langchain_bedrock.md'
- Chunking strategies for RAG applications: './rag/open-source/chunking/rag_chunking_strategies_langchain_bedrock.md'
- Vector Stores:
- Langchain Chatbot with Opensearch: './rag/open-source/vector_stores/rag_langchain_bedrock_opensearch.md'
- Gen AI Usecases:
- Text Generation:
- Streaming Response with Converse: './genai-use-cases/text-generation/how_to_work_with_text_generation_w_bedrock.md'
- Generate Python Code with Converse: './genai-use-cases/text-generation/how_to_work_with_code_generation_w_bedrock.md'
# - Entity Extraction: './genai-use-cases/text-generation/how_to_work_with_entity_extraction_w_bedrock.md'
- Text Translation with Converse: './genai-use-cases/text-generation/how_to_work_with_text_translation_w_bedrock.md'
- Text summarization with Converse: './genai-use-cases/text-generation/how_to_work_with_text-summarization-titan+claude.md'
- Generate Bulk Emails with Batch Inference: './genai-use-cases/text-generation/how_to_work_with_batch_example_for_multi_threaded_invocation.md'
# - Governance: 'general/license.md'
# - Observability: 'general/license.md'
# - Data access control: 'general/license.md'
- Workshops:
- Open-source L400:
- Introduction to the Use Case: './workshop/open-source-l400/00_Lab_Intro to Use-Case.md'
- Find a Dream Destination using RAG: './workshop/open-source-l400/02_Lab_Find a Dream Destination_RAG query.md'
- Find Dream Destination with CrewAI: './workshop/open-source-l400/05_Lab_Find dream destination with CrewAI.md'
- Open-source L200:
- Introduction to the Use Case: './workshop/open-source-l200/02_contextual_text_generation.md'
- Retrieval Based Text Generation: './workshop/open-source-l200/03_retrieval_based_text_application.md'
- Retrieval Based Chat Application: './workshop/open-source-l200/04_retrieval_based_chat_application.md'
- Agent Based Text Generation: './workshop/open-source-l200/05_agent_based_text_generation.md'
- Tags: 'general/tags.md'
- License: 'general/license.md'