Spaces:
Sleeping
Sleeping
Create .env.example
Browse files- .env.example +18 -0
.env.example
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# LLM(HFモデル or Inference API)
|
| 2 |
+
HF_LOCAL_MODEL_ID=google/flan-t5-base
|
| 3 |
+
USE_HF_INFERENCE_API=false
|
| 4 |
+
HF_API_TOKEN=
|
| 5 |
+
|
| 6 |
+
# SMTP(任意:メール送信を使う場合)
|
| 7 |
+
SMTP_HOST=smtp.gmail.com
|
| 8 |
+
SMTP_PORT=587
|
| 9 |
+
SMTP_USER=your_email@example.com
|
| 10 |
+
SMTP_PASSWORD=app_password_or_smtp_key
|
| 11 |
+
SMTP_FROM_NAME=Agent Studio
|
| 12 |
+
SMTP_FROM_EMAIL=your_email@example.com
|
| 13 |
+
|
| 14 |
+
# 公開URL(クリック計測の遷移先)
|
| 15 |
+
PUBLIC_BASE_URL=https://hf.space/yourname/agent-studio
|
| 16 |
+
|
| 17 |
+
# 署名キー(十分長いランダム文字列推奨)
|
| 18 |
+
TRACKING_SECRET=change_me_to_random_long_string
|