Skip to content

Commit 8980dcc

Browse files
author
ajosh0504
committed
Adding Colab instructions, updated readme
1 parent 11b2d34 commit 8980dcc

File tree

4 files changed

+27
-30
lines changed

4 files changed

+27
-30
lines changed

README.md

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,26 @@
1-
# Docusaurus Template Workshop
1+
# Developer Days AI Agents Lab
22

3-
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator. It's available on https://mongodb-developer.github.io/docusaurus-workshop/.
3+
This is the AI Agents Lab used during MongoDB Developer Days that covers building AI Agents using a fully open AI stack.
44

5-
This is a template to create new Workshop documentation sites. Contains info on how to use Docusaurus and is a good starting point.
5+
You can access the online version of the lab [here](https://mongodb-developer.github.io/ai-agents-lab/).
66

7-
### Installation
7+
## Running the Lab Locally
88

9-
```
10-
npx create-docusaurus@latest name-of-my-new-awesome-workshop https://github.com/mongodb-developer/docusaurus-workshop
11-
cd name-of-my-new-awesome-workshop
12-
npm start
13-
```
9+
If you want to run the lab locally, you can start by cloning the repository or downloading the code. You will need to have [Node.js](https://nodejs.org/en/) installed.
1410

15-
As you don't want to get the changes of these sample pages, just delete the `.git` folder and then `git init`.
11+
Once you have the code, you can run the following commands to install the dependencies and start the server:
1612

17-
Open `docusaurus.config.js` and change at least the `workshopName`
18-
19-
### Local Development
20-
21-
```
22-
$ npm start
2313
```
24-
25-
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
26-
27-
### Build
28-
29-
```
30-
$ npm build
14+
npm install
15+
npm start
3116
```
3217

33-
This command generates static content into the `build` directory and can be served using any static contents hosting service.
18+
You can then access the lab at http://localhost:3000
3419

35-
### Deployment
20+
## Contributing
3621

37-
Use the provided Github Action, or deploy manually after building
22+
If you find any issues with the lab, please open an issue or submit a pull request.
3823

39-
### Disclaimer
24+
## License
4025

41-
Use at your own risk; not a supported MongoDB product
26+
This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details

docs/30-dev-env/1-dev-setup.mdx

+14-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ import Screenshot from "@site/src/components/Screenshot";
22

33
# 👐 Setup dev environment
44

5+
You will be working in a Jupyter Notebook throughout this lab. The easiest and recommended way to run the lab notebook is using Google Colab.
6+
7+
Navigate to the notebook on [GitHub](https://github.com/mongodb-developer/ai-agents-lab-notebooks/blob/main/notebook_template.ipynb) and click the **Open in Colab** badge at the top of the notebook to open it in Google Colab.
8+
9+
<Screenshot url="https://github.com/mongodb-developer/ai-agents-lab-notebooks" src="img/screenshots/30-dev-env/1-open-colab.png" alt="Open in Colab" />
10+
11+
That's it! You're ready for the lab!
12+
13+
## Local setup
14+
15+
If you want to run the notebook locally, follow the steps below:
16+
517
* Clone the [GitHub repo](https://github.com/mongodb-developer/ai-agents-lab-notebooks.git) for this lab by executing the following command from the terminal:
618

719
```
@@ -28,6 +40,6 @@ pip install notebook
2840
jupyter notebook
2941
```
3042

31-
* In the browser tab that pops up, open the notebook named `notebook_template.ipynb`. This is the notebook you will be working in for this lab.
43+
* In the browser tab that pops up, open the notebook named `notebook_template.ipynb`.
3244

33-
<Screenshot url="localhost:8888/tree" src="img/screenshots/30-dev-env/1-jupyter-notebook.png" alt="Jupyter Notebook" />
45+
<Screenshot url="localhost:8888/tree" src="img/screenshots/30-dev-env/2-jupyter-notebook.png" alt="Jupyter Notebook" />
Loading

0 commit comments

Comments
 (0)