Skip to content

Commit 5fc3def

Browse files
committed
Fix links and add mcp notebook
1 parent 9064034 commit 5fc3def

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ <h2 class="section-title">${config.title}</h2>
161161
let githubPath = href.replace(/^\.\/?|^docs\//, '');
162162
// Compose GitHub repo path (assume main branch)
163163
const githubBase = 'raghavbali/mastering_llms_workshop/blob/main/docs/';
164-
// nbsanity
165-
// const nbsanity = `<a target="_blank" rel="noopener" href="https://nbsanity.com/view/github/${githubBase}${githubPath}"><img src='https://img.shields.io/badge/Open%20in-nbsanity-blue?logo=github' alt='Open in nbsanity' style='height:1em;vertical-align:middle;'/></a>`;
164+
// GitHub badge
165+
const github = `<a target="_blank" rel="noopener" href="https://github.com/${githubBase}${githubPath}"><img src='https://img.shields.io/badge/View%20on-GitHub-black?logo=github' alt='View on GitHub' style='height:1em;vertical-align:middle;'/></a>`;
166166
// nbviewer
167167
const nbviewer = `<a target="_blank" rel="noopener" href="https://nbviewer.org/github/${githubBase}${githubPath}"><img src='https://img.shields.io/badge/Open%20in-nbviewer-orange?logo=jupyter' alt='Open in nbviewer' style='height:1em;vertical-align:middle;'/></a>`;
168168
// Original link + badges
169-
return `${match} ${nbviewer}`; // ${nbsanity}
169+
return `${match} ${github} ${nbviewer}`;
170170
});
171171
return patched;
172172
}

docs/llm-lifecycle.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@
370370
},
371371
{
372372
"label": "👨🏻‍💻 Hands-on:",
373-
"value": "<ul><li><a href=\"module_04_llm_ops/01_retrieval_augmented_llm_app.ipynb\">RAG</a></li><li><a href=\"module_04_llm_ops/02_dspy_demo.ipynb\">DSPy</a></li></ul>"
373+
"value": "<ul><li><a href=\"module_04_llm_apps/01_retrieval_augmented_llm_app.ipynb\">RAG</a></li><li><a href=\"module_04_llm_apps/02_dspy_demo.ipynb\">DSPy</a></li><li><a href=\"module_04_llm_apps/03_mcp_getting_started.ipynb\">Tool Calling & MCP</a></li></ul>"
374374
}
375375
]
376376
}

0 commit comments

Comments
 (0)