-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmkdocs.yml
54 lines (52 loc) · 2.25 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
site_name: Copilot Developer Camp
site_url: https://microsoft.github.io/copilot-camp
repo_url: https://github.com/microsoft/copilot-camp
repo_name: microsoft/copilot-camp
edit_uri: '' # Disable edit button
extra_css:
- assets/labStyles.css
nav:
- Home: 'index.md'
- Extend Path - Extend Microsoft 365 Copilot:
- Welcome : 'pages/extend-m365-copilot/index.md'
- Lab E0 - Setup: 'pages/extend-m365-copilot/00-prerequisites.md'
- Lab E1 - First Declarative agent: 'pages/extend-m365-copilot/01-declarative-copilot.md'
- Lab E2 - Build an API: 'pages/extend-m365-copilot/02-build-the-api.md'
- Lab E3 - Add a declarative agent and API plugin: 'pages/extend-m365-copilot/03-add-declarative-agent.md'
- Lab E4 - Enhance the API and plugin: 'pages/extend-m365-copilot/04-enhance-api-plugin.md'
- Lab E5 - Add adaptive cards: 'pages/extend-m365-copilot/05-add-adaptive-card.md'
- Lab E6 - Add Entra ID authentication: 'pages/extend-m365-copilot/06-add-authentication.md'
- Lab EB - Add Graph Connector: 'pages/extend-m365-copilot/EB-add-graphconnector.md'
- Build Path - Build your own agent:
- Welcome : 'pages/custom-engine/index.md'
- Lab B0 - Setup: 'pages/custom-engine/00-prerequisites.md'
- Lab B1 - First custom engine agent: 'pages/custom-engine/01-custom-engine-agent.md'
- Lab B2 - Index your data in Azure AI Search: 'pages/custom-engine/02-rag.md'
- Lab B3 - Enhance user experience: 'pages/custom-engine/03-powered-by-ai.md'
- Lab B4 - Add single sign on authentication: 'pages/custom-engine/04-authentication.md'
- Lab B5 - Add actions to handle complex tasks: 'pages/custom-engine/05-actions.md'
theme:
name: 'material'
palette:
primary: '#35258F'
accent: '#091F2C'
logo: 'assets/images/CopilotCamp-Tent-Clean.png'
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs # Top nav
- navigation.tabs.sticky # Make top nav stay vaisible
- navigation.sections
- toc.integrate # Integrate sections into left nav
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.snippets:
base_path: docs/includes
- attr_list
- toc:
toc_depth: 2
extra_javascript:
- javascripts/next-button.js
- javascripts/cc-lab-step.js
- javascripts/clipboard.js