With IntelliAgents, we want to experiment with advanced agentic workflows to streamline and automate complex tasks. Our current use case is the automatic generation of calendar events based on a syllabus upload. By utilizing agentic agents, IntelliAgents ensures that all relevant dates and deadlines are seamlessly integrated into your calendar, enhancing productivity and organization.
To run the frontend locally, follow these steps:
Note: It's easier to deal with Node.js versions if you use a tool called nvm, installations can be seen here.
Ensure you have the following installed:
To check whether these were installed properly, you can run these:
# Check Node.js version (should be 20 or higher)
node -v
# Check npm version (should be 9 or higher)
npm -v
# Check Git version
git --versionNote on why we use
npm ciinstead ofnpm install: read this thread.
- Clone the repository:
git clone https://github.com/vangeliq/intelliAgents.git
- Navigate to the project directory:
cd intelliAgents - Install the dependencies:
npm ci
- Start the development server:
npm run dev
- Open your browser and navigate to
http://localhost:3000to see the application in action.
For other options on running the frontend, please refer to the README in the frontend folder.