Auto-generated by Agent Factory
A meeting assistant agent that joins virtual meetings, transcribes conversations in real time, extracts action items, assigns owners, sends follow-up summaries, and schedules follow-up meetings when required.
# 1. Create a virtual environment
python -m venv .venv
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate # Windows
# 2. Install dependencies
pip install -r requirements.txt
# 3. Configure environment variables
cp .env.example .env
# Edit .env with your values
# 4. Run the agent
python -m src.main| Variable | Description |
|---|---|
AZURE_OPENAI_ENDPOINT |
Azure OpenAI endpoint URL |
AZURE_OPENAI_API_KEY |
Azure OpenAI API key |
AZURE_OPENAI_DEPLOYMENT |
Model deployment name |
AZURE_AI_FOUNDRY_PROJECT |
(Optional) Foundry project connection string |
- Add tools in
src/tools.py - Update agent configuration in
agent.yaml - See
deploy/DEPLOYMENT.mdfor Azure deployment guidance