Implement summarization functionality that processes completed meeting transcripts to generate concise summaries. First draft base on a simple recursive agentic scenario. Observability and evaluation will be added in the next PRs.
24 lines
600 B
Plaintext
24 lines
600 B
Plaintext
APP_NAME="meet-app-summary-dev"
|
|
APP_API_TOKEN="dev-apikey"
|
|
|
|
AWS_STORAGE_BUCKET_NAME="meet-media-storage"
|
|
AWS_S3_ENDPOINT_URL="minio:9000"
|
|
AWS_S3_SECURE_ACCESS=false
|
|
|
|
AWS_S3_ACCESS_KEY_ID="meet"
|
|
AWS_S3_SECRET_ACCESS_KEY="password"
|
|
|
|
WHISPERX_BASE_URL="https://configure-your-url.com"
|
|
WHISPERX_ASR_MODEL="large-v2"
|
|
WHISPERX_API_KEY="your-secret-key"
|
|
|
|
LLM_BASE_URL="https://configure-your-url.com"
|
|
LLM_API_KEY="dev-apikey"
|
|
LLM_MODEL="Qwen/Qwen2.5-Coder-32B-Instruct-AWQ"
|
|
|
|
WEBHOOK_API_TOKEN="secret"
|
|
WEBHOOK_URL="https://configure-your-url.com"
|
|
|
|
POSTHOG_API_KEY="your-posthog-key"
|
|
POSTHOG_ENABLED="False"
|