-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
27 lines (24 loc) · 1.12 KB
/
Copy path.env.example
File metadata and controls
27 lines (24 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# === Transcriber (Whisper ASR) ===
TRANSCRIBER_PROVIDER=groq # groq | openai
TRANSCRIBER_MODEL=whisper-large-v3-turbo
# === Translator (LLM) ===
# Agno model string format: "provider:model_id"
# Examples:
# groq:openai/gpt-oss-120b (cloud, default)
# groq:llama-3.3-70b-versatile (cloud, stable)
# openai:gpt-4o-mini (cloud, reliable)
# openai:bilingualsub-gemini-flash (Docker Compose via CLIProxyAPI)
# ollama:TwinkleAI/gemma-3-4B-T1-it (local, free)
TRANSLATOR_MODEL=groq:openai/gpt-oss-120b
# === Optional CLIProxyAPI (used only by docker-compose.yml) ===
# Needed only if you want translations to route through CLIProxyAPI/agy.
# 1. Run host OAuth login first: cliproxyapi -antigravity-login
# 2. docker-compose.yml mounts this auth directory into the cli-proxy container.
# Leave CLIPROXY_AUTH_DIR unset to use ${HOME}/.cli-proxy-api.
# Set an absolute path only if your CLIProxyAPI auth directory is elsewhere.
# CLIPROXY_AUTH_DIR=/Users/you/.cli-proxy-api
CLIPROXY_PORT=8317
BILINGUALSUB_PORT=7860
# === API Keys (only needed for cloud providers) ===
GROQ_API_KEY=
OPENAI_API_KEY=