Spaces:
Running
Running
Upload .env.example with huggingface_hub
Browse files- .env.example +71 -0
.env.example
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
OPENAI_ENDPOINT=https://api.openai.com/v1
|
| 2 |
+
OPENAI_API_KEY=
|
| 3 |
+
|
| 4 |
+
ANTHROPIC_API_KEY=
|
| 5 |
+
ANTHROPIC_ENDPOINT=https://api.anthropic.com
|
| 6 |
+
|
| 7 |
+
GOOGLE_API_KEY=
|
| 8 |
+
|
| 9 |
+
AZURE_OPENAI_ENDPOINT=
|
| 10 |
+
AZURE_OPENAI_API_KEY=
|
| 11 |
+
AZURE_OPENAI_API_VERSION=2025-01-01-preview
|
| 12 |
+
|
| 13 |
+
DEEPSEEK_ENDPOINT=https://api.deepseek.com
|
| 14 |
+
DEEPSEEK_API_KEY=
|
| 15 |
+
|
| 16 |
+
MISTRAL_API_KEY=
|
| 17 |
+
MISTRAL_ENDPOINT=https://api.mistral.ai/v1
|
| 18 |
+
|
| 19 |
+
OLLAMA_ENDPOINT=http://localhost:11434
|
| 20 |
+
|
| 21 |
+
ALIBABA_ENDPOINT=https://dashscope.aliyuncs.com/compatible-mode/v1
|
| 22 |
+
ALIBABA_API_KEY=
|
| 23 |
+
|
| 24 |
+
MODELSCOPE_ENDPOINT=https://api-inference.modelscope.cn/v1
|
| 25 |
+
MODELSCOPE_API_KEY=
|
| 26 |
+
|
| 27 |
+
MOONSHOT_ENDPOINT=https://api.moonshot.cn/v1
|
| 28 |
+
MOONSHOT_API_KEY=
|
| 29 |
+
|
| 30 |
+
UNBOUND_ENDPOINT=https://api.getunbound.ai
|
| 31 |
+
UNBOUND_API_KEY=
|
| 32 |
+
|
| 33 |
+
SiliconFLOW_ENDPOINT=https://api.siliconflow.cn/v1/
|
| 34 |
+
SiliconFLOW_API_KEY=
|
| 35 |
+
|
| 36 |
+
IBM_ENDPOINT=https://us-south.ml.cloud.ibm.com
|
| 37 |
+
IBM_API_KEY=
|
| 38 |
+
IBM_PROJECT_ID=
|
| 39 |
+
|
| 40 |
+
GROK_ENDPOINT="https://api.x.ai/v1"
|
| 41 |
+
GROK_API_KEY=
|
| 42 |
+
|
| 43 |
+
#set default LLM
|
| 44 |
+
DEFAULT_LLM=openai
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
# Set to false to disable anonymized telemetry
|
| 48 |
+
ANONYMIZED_TELEMETRY=false
|
| 49 |
+
|
| 50 |
+
# LogLevel: Set to debug to enable verbose logging, set to result to get results only. Available: result | debug | info
|
| 51 |
+
BROWSER_USE_LOGGING_LEVEL=info
|
| 52 |
+
|
| 53 |
+
# Browser settings
|
| 54 |
+
BROWSER_PATH=
|
| 55 |
+
BROWSER_USER_DATA=
|
| 56 |
+
BROWSER_DEBUGGING_PORT=9222
|
| 57 |
+
BROWSER_DEBUGGING_HOST=localhost
|
| 58 |
+
# Set to true to keep browser open between AI tasks
|
| 59 |
+
KEEP_BROWSER_OPEN=true
|
| 60 |
+
USE_OWN_BROWSER=false
|
| 61 |
+
BROWSER_CDP=
|
| 62 |
+
# Display settings
|
| 63 |
+
# Format: WIDTHxHEIGHTxDEPTH
|
| 64 |
+
RESOLUTION=1920x1080x24
|
| 65 |
+
# Width in pixels
|
| 66 |
+
RESOLUTION_WIDTH=1920
|
| 67 |
+
# Height in pixels
|
| 68 |
+
RESOLUTION_HEIGHT=1080
|
| 69 |
+
|
| 70 |
+
# VNC settings
|
| 71 |
+
VNC_PASSWORD=youvncpassword
|