-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (31 loc) · 1.47 KB
/
Copy path.env.example
File metadata and controls
38 lines (31 loc) · 1.47 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
28
29
30
31
32
33
34
35
36
37
38
# =========================================================================
# ECHO SAAS PLATFORM ENVIRONMENT CONFIGURATION
# Copy this file to '.env' and fill in your actual credentials.
# =========================================================================
# -------------------------------------------------------------------------
# 1. AI PIPELINE PROVIDERS
# -------------------------------------------------------------------------
# Hugging Face Access Token
hf_token=your_huggingface_access_token_here
HF_TOKEN=your_huggingface_access_token_here
# Groq API Configuration (Whisper-V3 and LLaMA Inference)
groq_api=your_groq_api_key_here
GROQ_API_LLM=your_groq_api_key_here
groq_model=llama-3.1-8b-instant
GROQ_MODEL=llama-3.1-8b-instant
# Gemini API Configuration
gemini_api=your_gemini_api_key_here
GEMINI_API_LLM=your_gemini_api_key_here
GEMINI_MODEL=gemini-3-flash-preview
# -------------------------------------------------------------------------
# 2. MONGODB DATABASE CONFIGURATION
# -------------------------------------------------------------------------
# MongoDB URI for local server or Atlas cluster authentication storage
MONGODB_URI=mongodb://localhost:27017/echo_db
MONGODB_USER_COLLECTION=users
# -------------------------------------------------------------------------
# 3. PLATFORM SERVICES & NETWORKING
# -------------------------------------------------------------------------
# API URL of backend configuration servers
VITE_API_URL=http://localhost:3001
PORT=3000