Is the code for the Agentic AI labs available on GitHub or elsewhere?

Is the code for the various labs available for download via GitHub or elsewhere? Although I have the subscription and can access the cloud environment, I prefer to try and make everything work on my own machine. If we could clone a repo for each module, or the whole course, or find a zip file somewhere that would be great. I think for other DeepLearning courses I’ve had to download lab files by hand via Jupyter file download. It would be great if we could get the code via a repo. Please let me know if there is a link - I don’t see anything mentioned in the course materials or the M2_UGL_1 notebook.
Thanks!
Fraser

1 Like

Normally they don’t give the codes so download them while you have subscription, but you also need to make sure when you run them to have the same versions of libraries used.

Thank you, “gent.spah” for you update on this item.

But will it be possible for those of us who have a paid subscription for “Agentic AI” course get a copy of the full code (including the utils - helper module)?
This will enable us to understand how this lab fully works.
For instance the inner workings of the utils functions are complete opaque to me.

Many thanks

Adescientst..

1 Like

Hello “gent.spah”, a quick update from my side.

My bad, I have just realized I can view the utils.py module code by going to the top menu of the notebook and select File > Open.

Also, I can zip and download the entire code from it root folder by runnng this bash script in a new notebook cell:

%%bash

cd ..
echo Before..

ls

tar -czf m2_ugl_1.tar.gz M2_UGL_1

echo After..

ls

Please ignore my original concern.

Many thanks

Adescientist..

5 Likes

This is how you get those files, well done!