-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv.example
More file actions
57 lines (46 loc) · 2.51 KB
/
env.example
File metadata and controls
57 lines (46 loc) · 2.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Morpheus API Gateway Documentation Configuration Template
# Copy this file to .env.local and fill in your actual values
# =============================================================================
# API Configuration
# =============================================================================
# Base URL for the Morpheus API backend
# For production: https://api.mor.org
# For development: https://api.dev.mor.org
NEXT_PUBLIC_API_BASE_URL=https://api.mor.org
# =============================================================================
# Authentication - AWS Cognito Configuration
# =============================================================================
# AWS region where your Cognito User Pool is located
NEXT_PUBLIC_COGNITO_REGION=us-east-2
# Cognito User Pool ID (found in AWS Cognito console)
NEXT_PUBLIC_COGNITO_USER_POOL_ID=your_user_pool_id
# Cognito User Pool Client ID (found in AWS Cognito console)
NEXT_PUBLIC_COGNITO_USER_POOL_CLIENT_ID=your_client_id
# Cognito hosted UI domain for authentication flows
NEXT_PUBLIC_COGNITO_DOMAIN=your-cognito-domain.auth.us-east-2.amazoncognito.com
# =============================================================================
# Analytics - Google Analytics & Google Tag Manager
# =============================================================================
# Google Analytics 4 Measurement ID (format: G-XXXXXXXXXX)
# Leave empty to disable Google Analytics tracking
NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX
# Google Tag Manager Container ID (format: GTM-XXXXXXX)
# Leave empty to disable Google Tag Manager tracking
NEXT_PUBLIC_GTM_ID=GTM-XXXXXXX
# =============================================================================
# Model Filtering Configuration
# =============================================================================
# Comma-separated list of ModelTypes to show in the UI
# Available types: LLM, UNKNOWN, STT, TTS, EMBEDDING
# Controls which model types appear in the chat and test page dropdowns
NEXT_PUBLIC_ALLOWED_MODEL_TYPES=LLM,UNKNOWN
# Default Model Configuration
# Model ID to select by default when models are loaded
# Falls back to first available model if specified model is not found
NEXT_PUBLIC_DEFAULT_MODEL=llama-3.3-70b
# =============================================================================
# Environment Configuration
# =============================================================================
# Application environment identifier (development, staging, production)
# Used for conditional behavior and logging
NEXT_PUBLIC_ENVIRONMENT=development