This project is an example which uses Composio to seamlessly convert your to-do lists into Google Calendar events. It automatically schedules tasks with specified labels and times, ensuring your calendar is always up-to-date and organized.

Calendar Agent GitHub Repository

Explore the complete source code for the Calendar Agent project. This repository contains all the necessary files and scripts to set up and run the Calendar Agent using LangChain and Composio.

1

Install dependencies

Fork and Clone this repository, Navigate to the Project Directory

cd js/examples/docs-example/calendar_agent

Install the required dependencies:

2

Import base packages

Next, we’ll import the essential libraries for our project.

3

Initialize Language Model and Define tools

We’ll initialize our language model and set up the necessary tools for our agents.

4

Setup Todo

Define the todo list that we want to convert into calendar events.

5

Create and Execute Agent

Finally, we’ll define and execute the agent responsible for creating Google Calendar events based on the todo list.

Putting it All Together