This is an AI Agent built using Composio and Vercel, it is a personal assistant with the capability to access your email, calendar, and slack.
- Node.js (v18 or higher)
- npm, yarn, or pnpm package manager
- Clone the repository:
git clone https://github.com/composio-ai/executive-assistant.git
cd Executive-Assistant
- Install dependencies:
npm install
# or
yarn install
# or
pnpm install
- Set up environment variables:
cp .env.example .env.local
Edit .env.local
and add your required environment variables:
NEXT_PUBLIC_COMPOSIO_API_KEY=your_api_key
NEXT_PUBLIC_GROQ_API_KEY=your_api_key
NEXT_PUBLIC_OPENAI_API_KEY=your_api_key
# Add other environment variables here
- Start the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
- Open http://localhost:3000 in your browser to view the application.