Overview

I am building a collection of notebooks on CoLab for learning purposes. These notebooks are backed up on Github and linked below with descriptions.

Notes

Add a Python Library

Link - https://www.jcchouinard.com/google-colab-with-python/#:~:text=v | grep tensorflow-,How to Install Python Packages in Google Colab%3F,allows to install Python libraries.

Add a code block in CoLab such as below:

!pip install {library}

Replace {library} with the name of your library.

Using ! is a way to have CoLab run shell commands.

Notebooks

Transcript Generator

Creates transcripts in User-Agent format as a TSV file. Will create an arbitrary number of transcripts based on a company name and the use cases given.

REaCT Example

An example of the REaCT framework for getting an LLM agent to use tools to solve a problem.

OpenAI Weather Function

Uses OpenAI functions and weatherapi.com to have GPT query the API to return the weather for a specified city.