forked from 239x1a3242-maker/AI-Agent-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 1.04 KB
/
.env.example
File metadata and controls
27 lines (21 loc) · 1.04 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
# AI Agent System Environment Variables
# HuggingFace Space Configuration
# This is the URL of your HuggingFace Space or Worker running the model
HF_SPACE_URL=https://your-text-worker.your-subdomain.workers.dev
# Optional: Cloudflare Worker URL for image description (worker2.js)
# If set, backend image uploads use this endpoint (POST {IMAGE_WORKER_URL}/describe)
IMAGE_WORKER_URL=https://your-image-worker.your-subdomain.workers.dev
# Optional: HuggingFace API Token (if your space requires authentication)
# HF_API_TOKEN=your-hf-token-here
# Email Configuration (Optional - for send_email tool)
# These settings are used for the send_email tool
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=sample-email@example.com
# For Gmail, use an App Password from https://myaccount.google.com/apppasswords
SMTP_PASSWORD=sample-app-password
# Custom Instructions (Optional)
# These instructions will be appended to the system prompt
# CUSTOM_INSTRUCTIONS=Always be concise and helpful.
# Frontend API URL (for development)
VITE_API_URL=http://localhost:8000