|
| 1 | +--- |
| 2 | +title: Workshop agenda |
| 3 | +permalink: workshop.html |
| 4 | +--- |
| 5 | + |
| 6 | +{%- comment -%} |
| 7 | +Workshop view. Every lab, task, timing and level on this page is read from the |
| 8 | +frontmatter of the pages under /Instructions/Consolidated/, so it cannot drift |
| 9 | +from the labs themselves. Nothing here is hard-coded. |
| 10 | + |
| 11 | +Layout deliberately echoes a docs-style workshop site: a nav rail on the left |
| 12 | +and the agenda on the right. |
| 13 | +{%- endcomment -%} |
| 14 | + |
| 15 | +{%- assign consolidated = site.pages | where_exp: "p", "p.url contains '/Instructions/Consolidated/'" -%} |
| 16 | +{%- assign labs = consolidated | where_exp: "p", "p.lab.type == 'lab'" | sort: "lab.order" -%} |
| 17 | +{%- assign all_tasks = consolidated | where_exp: "p", "p.lab.type == 'task'" -%} |
| 18 | + |
| 19 | +<style> |
| 20 | +.wk-wrap { display: grid; grid-template-columns: 15rem 1fr; gap: 2.5rem; align-items: start; } |
| 21 | +@media (max-width: 900px) { .wk-wrap { grid-template-columns: 1fr; } } |
| 22 | + |
| 23 | +.wk-nav { position: sticky; top: 1rem; font-size: .9em; border-right: 1px solid #e4e4e7; padding-right: 1rem; } |
| 24 | +.wk-nav h4 { margin: 0 0 .5rem; font-size: .75em; letter-spacing: .08em; text-transform: uppercase; color: #6b7280; } |
| 25 | +.wk-nav ol { list-style: none; margin: 0 0 1.25rem; padding: 0; } |
| 26 | +.wk-nav li { margin: 0 0 .35rem; } |
| 27 | +.wk-nav a { text-decoration: none; } |
| 28 | +.wk-nav a:hover { text-decoration: underline; } |
| 29 | +.wk-nav .wk-time { color: #6b7280; font-size: .85em; } |
| 30 | + |
| 31 | +.wk-lab { border: 1px solid #e4e4e7; border-radius: 8px; padding: 1rem 1.25rem; margin: 0 0 1.25rem; } |
| 32 | +.wk-lab h3 { margin-top: 0; } |
| 33 | +.wk-meta { font-size: .85em; color: #6b7280; margin: -.4rem 0 .9rem; } |
| 34 | +.wk-step { display: grid; grid-template-columns: 1fr auto auto; gap: .75rem; |
| 35 | + padding: .45rem 0; border-top: 1px solid #f1f1f3; align-items: baseline; } |
| 36 | +.wk-step:first-of-type { border-top: none; } |
| 37 | +.wk-badge { font-size: .72em; padding: .12em .5em; border-radius: 999px; white-space: nowrap; } |
| 38 | +.wk-core { background: #e8f0fe; color: #1a45a5; } |
| 39 | +.wk-setup { background: #f1f1f3; color: #52525b; } |
| 40 | +.wk-elapsed { color: #6b7280; font-size: .85em; white-space: nowrap; } |
| 41 | +.wk-locked { color: #92400e; background: #fef3c7; } |
| 42 | +.wk-optional-list { font-size: .92em; color: #3f3f46; margin-top: .85rem; } |
| 43 | +</style> |
| 44 | + |
| 45 | +<div class="wk-wrap" markdown="0"> |
| 46 | +<nav class="wk-nav"> |
| 47 | + <h4>Workshop</h4> |
| 48 | + <ol> |
| 49 | + <li><a href="#agenda">Agenda</a></li> |
| 50 | + <li><a href="#before-you-start">Before you start</a></li> |
| 51 | + </ol> |
| 52 | + <h4>Sessions</h4> |
| 53 | + <ol> |
| 54 | + {%- for lab in labs -%} |
| 55 | + {%- assign lab_id = lab.lab.id -%} |
| 56 | + {%- assign core = all_tasks | where_exp: "p", "p.lab.parent == lab_id" | where_exp: "p", "p.lab.section == 'core'" -%} |
| 57 | + {%- assign mins = 0 -%} |
| 58 | + {%- for t in core %}{% assign mins = mins | plus: t.lab.duration %}{% endfor -%} |
| 59 | + <li><a href="#lab-{{ lab_id | downcase }}">{{ lab.lab.title }}</a><br><span class="wk-time">{{ mins }} min core</span></li> |
| 60 | + {%- endfor -%} |
| 61 | + </ol> |
| 62 | + <h4>Other views</h4> |
| 63 | + <ol> |
| 64 | + <li><a href="{{ '/explore.html' | relative_url }}">Task explorer</a></li> |
| 65 | + <li><a href="{{ '/index.html' | relative_url }}">Full lab catalogue</a></li> |
| 66 | + </ol> |
| 67 | +</nav> |
| 68 | + |
| 69 | +<div class="wk-main" markdown="1"> |
| 70 | + |
| 71 | +# AI agents workshop |
| 72 | + |
| 73 | +A guided, instructor-led path through the Tailwind Traders labs. Each session builds a |
| 74 | +working agent, then hands off to the next. |
| 75 | + |
| 76 | +This page is the **core path**: the shortest route through every lab that still ends with |
| 77 | +something running. Optional tasks are listed under each session for anyone who finishes early |
| 78 | +or wants to go further afterwards. |
| 79 | + |
| 80 | +{%- assign total_core = 0 -%} |
| 81 | +{%- assign total_all = 0 -%} |
| 82 | +{%- for t in all_tasks -%} |
| 83 | + {%- if t.lab.duration -%} |
| 84 | + {%- assign total_all = total_all | plus: t.lab.duration -%} |
| 85 | + {%- if t.lab.section == 'core' %}{% assign total_core = total_core | plus: t.lab.duration %}{% endif -%} |
| 86 | + {%- endif -%} |
| 87 | +{%- endfor -%} |
| 88 | +{%- assign core_h = total_core | divided_by: 60 -%} |
| 89 | +{%- assign core_m = total_core | modulo: 60 -%} |
| 90 | +{%- assign all_h = total_all | divided_by: 60 -%} |
| 91 | +{%- assign all_m = total_all | modulo: 60 -%} |
| 92 | + |
| 93 | +**Core path:** {{ labs.size }} sessions, about **{% if core_h > 0 %}{{ core_h }}h {% endif %}{{ core_m }}m** of |
| 94 | +hands-on time. **Everything**, including all optional tasks: about **{{ all_h }}h {% if all_m > 0 %}{{ all_m }}m{% endif %}**. |
| 95 | + |
| 96 | +## Agenda |
| 97 | +{: #agenda } |
| 98 | + |
| 99 | +{% assign elapsed = 0 %} |
| 100 | +{%- for lab in labs -%} |
| 101 | +{%- assign lab_id = lab.lab.id -%} |
| 102 | +{%- assign tasks = all_tasks | where_exp: "p", "p.lab.parent == lab_id" | sort: "lab.order" -%} |
| 103 | +{%- assign core = tasks | where_exp: "p", "p.lab.section == 'core'" -%} |
| 104 | +{%- assign optional = tasks | where_exp: "p", "p.lab.section == 'optional'" -%} |
| 105 | +{%- assign setup = tasks | where_exp: "p", "p.lab.section == 'setup'" -%} |
| 106 | +{%- assign lab_core = 0 -%} |
| 107 | +{%- for t in core %}{% assign lab_core = lab_core | plus: t.lab.duration %}{% endfor -%} |
| 108 | + |
| 109 | +<div class="wk-lab" markdown="0" id="lab-{{ lab_id | downcase }}"> |
| 110 | + <h3><a href="{{ lab.url | relative_url }}">Session {{ lab.lab.order }} — {{ lab.lab.title }}</a></h3> |
| 111 | + <p class="wk-meta">{{ lab_core }} min core · L{{ lab.lab.level }} · {{ lab.lab.concepts }}</p> |
| 112 | + |
| 113 | + {%- for t in setup %} |
| 114 | + <div class="wk-step"> |
| 115 | + <span><a href="{{ t.url | relative_url }}">{{ t.lab.title }}</a></span> |
| 116 | + <span class="wk-badge wk-setup">setup</span> |
| 117 | + <span class="wk-elapsed">before you start</span> |
| 118 | + </div> |
| 119 | + {%- endfor -%} |
| 120 | + |
| 121 | + {%- for t in core %} |
| 122 | + {%- assign elapsed = elapsed | plus: t.lab.duration -%} |
| 123 | + {%- assign e_h = elapsed | divided_by: 60 -%} |
| 124 | + {%- assign e_m = elapsed | modulo: 60 -%} |
| 125 | + <div class="wk-step"> |
| 126 | + <span><a href="{{ t.url | relative_url }}">{{ t.lab.title }}</a></span> |
| 127 | + <span class="wk-badge wk-core">{{ t.lab.duration }} min</span> |
| 128 | + <span class="wk-elapsed">{% if e_h > 0 %}{{ e_h }}h {% endif %}{{ e_m }}m elapsed</span> |
| 129 | + </div> |
| 130 | + {%- endfor -%} |
| 131 | + |
| 132 | + {%- if optional.size > 0 %} |
| 133 | + <div class="wk-optional-list" markdown="0"> |
| 134 | + <strong>Optional, if there's time:</strong> |
| 135 | + <ul> |
| 136 | + {%- for t in optional %} |
| 137 | + <li><a href="{{ t.url | relative_url }}">{{ t.lab.title }}</a> · {{ t.lab.duration }} min · L{{ t.lab.level }} |
| 138 | + {%- if t.lab.access == 'gated' %} <span class="wk-badge wk-locked">demo only — {{ t.lab.requires }}</span>{% endif -%} |
| 139 | + </li> |
| 140 | + {%- endfor %} |
| 141 | + </ul> |
| 142 | + </div> |
| 143 | + {%- endif %} |
| 144 | +</div> |
| 145 | +{%- endfor %} |
| 146 | + |
| 147 | +## Before you start |
| 148 | +{: #before-you-start } |
| 149 | + |
| 150 | +Each session has its own **Getting started** page covering the Microsoft Foundry project, |
| 151 | +starter code and environment for that lab. Attendees should complete the one for session 1 |
| 152 | +before the workshop begins: |
| 153 | + |
| 154 | +{% for lab in labs -%} |
| 155 | +{%- assign lab_id = lab.lab.id -%} |
| 156 | +{%- assign setup = all_tasks | where_exp: "p", "p.lab.parent == lab_id" | where_exp: "p", "p.lab.section == 'setup'" -%} |
| 157 | +{%- for s in setup %} |
| 158 | +- **{{ lab.lab.title }}** — [{{ s.lab.title }}]({{ s.url | relative_url }}) |
| 159 | +{%- endfor -%} |
| 160 | +{%- endfor %} |
| 161 | + |
| 162 | +{% assign gated = all_tasks | where_exp: "p", "p.lab.access == 'gated'" | sort: "lab.parent" %} |
| 163 | +{%- if gated.size > 0 %} |
| 164 | +### Tasks that need extra access |
| 165 | + |
| 166 | +{{ gated.size }} optional tasks need permissions or licensing many attendees won't have, so |
| 167 | +they're **demo only** in a workshop setting. Nothing else depends on them. |
| 168 | + |
| 169 | +| Task | Needs | |
| 170 | +| --- | --- | |
| 171 | +{% for t in gated -%} |
| 172 | +| [{{ t.lab.title }}]({{ t.url | relative_url }}) | {{ t.lab.requires }} | |
| 173 | +{% endfor %} |
| 174 | +{%- endif %} |
| 175 | + |
| 176 | +</div> |
| 177 | +</div> |
0 commit comments