🤖 Meet Intel

Your AI Agent Joins Every Meeting

Meet Intel connects to your Microsoft Teams and Webex meetings, listens to conversations, retrieves answers from your SharePoint, Confluence, and ServiceNow, and delivers them in real-time.

Deploy Your Agent →
🎤

Real-time Transcription

Whisper-powered STT on dedicated GPU. Speaker-tagged transcripts with sub-second latency.

🔍

Multi-Source RAG

Query SharePoint, Confluence, and ServiceNow simultaneously using your existing credentials.

In-Meeting Answers

Adaptive Cards in Teams, side panel updates in Webex. 3-5 second response time.

✏️

Approval-Gated Write-backs

Propose document updates from meetings. The Watcher QA's every change before approval.

API Quick Start

# Onboard your organization
curl -X POST https://meet.velda.ai/tenants \
  -H "Content-Type: application/json" \
  -d '{"org_name":"Acme Corp","org_slug":"acme-corp","plan":"starter"}'

# Save the returned api_key, then configure your agent
curl -X POST https://meet.velda.ai/agents/configure \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"persona_name":"Tech Advisor","retrieval_sources":["sharepoint","confluence"]}'

# Join a meeting
curl -X POST https://meet.velda.ai/meetings/join \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"teams","meeting_url":"https://teams.microsoft.com/l/meetup-join/..."}'