-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
50 lines (46 loc) · 2.3 KB
/
.env.example
File metadata and controls
50 lines (46 loc) · 2.3 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
# ==============================================================================
# Base Application Settings
# ==============================================================================
NEXT_PUBLIC_API_BASE_URL=http://localhost:8000
TECHDEMOFORGE_DATA_DIR=./backend/data
FFMPEG_BIN=ffmpeg
# ==============================================================================
# Provider Selection Core
# ==============================================================================
# Mock vs Minimax:
# - "mock": The default, offline fallback. It safely generates synthetic audio
# and watermarked dummy MP4 placeholders without an API key or network.
# - "minimax": Routes requests to the real MiniMax integration pipelines, such as
# the MiniMax-M2.7 Anthropic-compatible text generator and
# async video polling workers.
#
# IMPORTANT: TechDemoForge is a local-first repository. It is *ready* for
# these providers but does *not* bundle credentials. You must provide
# your own API keys in the sections below.
#
# You may mix and match! For example, enabling text=minimax while
# leaving speech=mock allows you to test real storyboards without burning voice API credits.
TECHDEMOFORGE_TEXT_PROVIDER=mock
TECHDEMOFORGE_SPEECH_PROVIDER=mock
TECHDEMOFORGE_VIDEO_PROVIDER=mock
# ==============================================================================
# Developer Credentials (MiniMax / Anthropic pipelines)
# ==============================================================================
# TechDemoForge is a local-first engine; we do not bundle vendor API keys.
# To operate any subsystem with "minimax", you must acquire your own API keys.
#
# Text Planning (Powered by MiniMax-M2.7 via Anthropic API Spec)
# Note: This engine handles the intelligent storyboard and narrative generation.
ANTHROPIC_BASE_URL=https://api.minimax.io/anthropic
ANTHROPIC_API_KEY=
MINIMAX_TEXT_MODEL=MiniMax-M2.7
# Speech Generation (Powered by MiniMax WebSockets API)
MINIMAX_BASE_URL=https://api.minimax.chat/v1
MINIMAX_API_KEY=
MINIMAX_SPEECH_MODEL=speech-02-hd
MINIMAX_VOICE_ID=male-qn-qingse
MINIMAX_AUDIO_FORMAT=mp3
# Video Generation (Powered by MiniMax Async API)
# Note: These operations run as local background jobs to prevent HTTP timeouts.
MINIMAX_VIDEO_MODEL=MiniMax-Hailuo-02
MINIMAX_VIDEO_RESOLUTION=1280x720