Skip to content

Commit 28bf061

Browse files
committed
fixing main page link + trying to fix img link on lesson 1
1 parent 70d7135 commit 28bf061

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ Throughout this course you'll find many code examples and exercises, so we encou
8686

8787
| # | Lesson Link | Description |
8888
| ---- | ----------- | ----------- |
89-
| 1 | [Introduction to Generative AI and LLMs for JavaScript Developers](/lessons/01-intro-to-genai) | Understand Generative AI and LLM fundamentals, their applications and limits in JavaScript, and how to use AI to enhance user experiences. |
90-
| 2 | [Build your first AI app](/lessons/02-first-ai-app) | Set up your development environment, write a basic app, and understand system prompts. |
91-
| 3 | [Prompt engineering](/lessons/03-prompt-engineering) | Learn Prompt engineering fundamentals, techniques, and meta-prompts for better AI outcomes. |
92-
| 4 | [Structured output](/lessons/04-structured-output) | Learn structured output, how to extract data from prompts, and present it in various formats, such as JSON, for easier consumption. |
93-
| 5 | [Retrieval augmented generation (RAG)](/lessons/05-rag) | Learn the basics of RAG, how to integrate external data, and how to leverage it for more relevant, accurate AI responses. |
94-
| 6 | [Tool calling/Function calling](/lessons/06-tool-calling) | Learn how to give your LLM extra capbilities, bring your own functions |
95-
| 7 | [MCP, Model Context Protocol ](/lessons/07-mcp/) | Teaches how to get started with MCP to standardize how to expose prompts, resources and tools |
89+
| 1 | [Introduction to Generative AI and LLMs for JavaScript Developers](/lessons/01-intro-to-genai/README.md) | Understand Generative AI and LLM fundamentals, their applications and limits in JavaScript, and how to use AI to enhance user experiences. |
90+
| 2 | [Build your first AI app](/lessons/02-first-ai-app/README.md) | Set up your development environment, write a basic app, and understand system prompts. |
91+
| 3 | [Prompt engineering](/lessons/03-prompt-engineering/README.md) | Learn Prompt engineering fundamentals, techniques, and meta-prompts for better AI outcomes. |
92+
| 4 | [Structured output](/lessons/04-structured-output/README.md) | Learn structured output, how to extract data from prompts, and present it in various formats, such as JSON, for easier consumption. |
93+
| 5 | [Retrieval augmented generation (RAG)](/lessons/05-rag/README.md) | Learn the basics of RAG, how to integrate external data, and how to leverage it for more relevant, accurate AI responses. |
94+
| 6 | [Tool calling/Function calling](/lessons/06-tool-calling/README.md) | Learn how to give your LLM extra capbilities, bring your own functions |
95+
| 7 | [MCP, Model Context Protocol ](/lessons/07-mcp/README.md) | Teaches how to get started with MCP to standardize how to expose prompts, resources and tools |
9696
| 8 | [Enhancing MCP Clients with Large Language Models](/lessons/08-mcp-advanced/README.md) | Learn how to improve your MCP app by improving clients with LLM and more |
9797

9898
New lessons will be added to the course over time, so stay tuned!

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
relativePath: true,
2828
auto2top: false,
2929
notFoundPage: true,
30+
basePath: "/",
3031
alias: {
3132
'/.*/_sidebar.md': '/_sidebar.md',
3233
'/(README.(.*))': '/translations/$1',

lessons/01-intro-to-genai/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In the heart of 1860s London, you are recognized as one of the most skilled mech
4343
Your workbench, the heart of your workshop, is an organized mess.
4444

4545
<div>
46-
<img src="/lessons/01-intro-to-genai/assets/london.png" alt="London Workshop"width=300 >
46+
<img src="./assets/london.png" alt="London Workshop"width=300 >
4747
</div>
4848

4949
_At the center of the bench lies the torso of a robot—an engineering marvel that has consumed months of effort. Its wooden frame is intricately carved, each joint meticulously designed for smooth movement._

0 commit comments

Comments
 (0)