Intelligent meeting tool that works with your data Watch the demo on YouTube
Navigate to frontend directory
cd frontend
npm i
npm start
This backend service processes meeting transcripts to generate relevant email queries and summaries.
- Install Conda.
- Ensure Python 3.10 is available in the Conda environment.
To create the environment and install all dependencies from environment.yml
, run:
# Create and activate environment
conda create -n meeting-assistant python=3.10
conda activate meeting-assistant
conda install --file requirements.txt
Create a .env
file in the project root with the necessary API keys:
OPENAI_API_KEY=
FLASK_ENV=development
FLASK_DEBUG=1
ANTHROPIC_API_KEY=
For secure storage of additional credentials (e.g., token.json
for Gmail API access), create a .credentials
directory in the backend:
# Create .credentials directory in backend
not
Note: Ask Anwar for the necessary tokens and place them in the .credentials
directory.
To start the backend server, run:
# From the project root
python backend/run.py
The server will be available at http://localhost:5000
.
To confirm the server is running, check the health endpoint:
curl http://localhost:5000/health
Try a sample query using:
curl http://localhost:5000/demo-queries
To analyze a custom transcript, use:
curl -X POST http://localhost:5000/analyze-transcript \
-H "Content-Type: application/json" \
-d '{
"transcript": "John: Can you find that budget email from Sarah? Mary: The one from last week with the Excel file?"
}'