mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-11 07:15:08 -05:00
## Changes 🏗️ https://github.com/user-attachments/assets/d9c12ac0-625c-4b38-8834-e494b5eda9c0 Add a "speech to text" feature in the Chat input fox of Copilot, similar as what you have in ChatGPT. ## Checklist 📋 ### For code changes: - [x] I have clearly listed my changes in the PR description - [x] I have made a test plan - [x] I have tested my changes according to the test plan: - [x] Run locally and try the speech to text feature as part of the chat input box ### For configuration changes: We need to add `OPENAI_API_KEY=` to Vercel ( used in the Front-end ) both in Dev and Prod. - [x] `.env.default` is updated or already compatible with my changes --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Supabase
|
|
NEXT_PUBLIC_SUPABASE_URL=http://localhost:8000
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyAgCiAgICAicm9sZSI6ICJhbm9uIiwKICAgICJpc3MiOiAic3VwYWJhc2UtZGVtbyIsCiAgICAiaWF0IjogMTY0MTc2OTIwMCwKICAgICJleHAiOiAxNzk5NTM1NjAwCn0.dc_X5iR_VP_qT0zsiyj_I_OZ2T9FtRU2BBNWN8Bu4GE
|
|
|
|
# Back-end services
|
|
NEXT_PUBLIC_AGPT_SERVER_URL=http://localhost:8006/api
|
|
NEXT_PUBLIC_AGPT_WS_SERVER_URL=ws://localhost:8001/ws
|
|
NEXT_PUBLIC_FRONTEND_BASE_URL=http://localhost:3000
|
|
|
|
# Env config
|
|
NEXT_PUBLIC_APP_ENV=local
|
|
NEXT_PUBLIC_BEHAVE_AS=LOCAL
|
|
|
|
# Feature flags
|
|
NEXT_PUBLIC_LAUNCHDARKLY_ENABLED=false
|
|
NEXT_PUBLIC_LAUNCHDARKLY_CLIENT_ID=687ab1372f497809b131e06e
|
|
|
|
# Debugging
|
|
NEXT_PUBLIC_REACT_QUERY_DEVTOOL=true
|
|
NEXT_PUBLIC_GA_MEASUREMENT_ID=G-FH2XK2W4GN
|
|
|
|
# Google Drive Picker
|
|
NEXT_PUBLIC_GOOGLE_CLIENT_ID=
|
|
NEXT_PUBLIC_GOOGLE_API_KEY=
|
|
NEXT_PUBLIC_GOOGLE_APP_ID=
|
|
|
|
# Cloudflare CAPTCHA
|
|
NEXT_PUBLIC_CLOUDFLARE_TURNSTILE_SITE_KEY=
|
|
NEXT_PUBLIC_TURNSTILE=disabled
|
|
|
|
# PR previews
|
|
NEXT_PUBLIC_PREVIEW_STEALING_DEV=
|
|
|
|
# PostHog Analytics
|
|
NEXT_PUBLIC_POSTHOG_KEY=
|
|
NEXT_PUBLIC_POSTHOG_HOST=https://eu.i.posthog.com
|
|
|
|
# OpenAI (for voice transcription)
|
|
OPENAI_API_KEY=
|