-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
58 lines (47 loc) · 2.07 KB
/
.env.example
File metadata and controls
58 lines (47 loc) · 2.07 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
57
58
# =============================================================================
# UiPath LLM Client Configuration
# =============================================================================
# Copy this file to .env and fill in your values.
# The client supports three backends: AgentHub (default), Orchestrator, and LLMGateway.
# -----------------------------------------------------------------------------
# Backend Selection
# -----------------------------------------------------------------------------
# Choose which backend to use: "agenthub" (default), "orchestrator", or "llmgateway"
UIPATH_LLM_SERVICE="agenthub"
# =============================================================================
# PLATFORM BACKEND SETTINGS (AgentHub / Orchestrator)
# =============================================================================
# Both "agenthub" and "orchestrator" use PlatformSettings with the same
# authentication. The EndpointManager selects the correct URL paths.
# Run `uv run uipath auth login` to populate these automatically.
# Core settings (populated automatically by CLI auth, or set manually)
UIPATH_URL=""
UIPATH_ORGANIZATION_ID=""
UIPATH_TENANT_ID=""
UIPATH_ACCESS_TOKEN=""
# Optional: AgentHub discovery configuration (only used when backend is "agenthub")
UIPATH_AGENTHUB_CONFIG="agentsruntime"
# Optional: tracing
UIPATH_PROCESS_KEY=""
UIPATH_JOB_KEY=""
# =============================================================================
# LLMGATEWAY BACKEND SETTINGS
# =============================================================================
# To use LLMGateway, set UIPATH_LLM_SERVICE="llmgateway" above.
# Required settings
LLMGW_URL=""
LLMGW_SEMANTIC_ORG_ID=""
LLMGW_SEMANTIC_TENANT_ID=""
LLMGW_REQUESTING_PRODUCT=""
LLMGW_REQUESTING_FEATURE=""
# Authentication (choose one method)
# Option 1: Access token (short-lived)
LLMGW_ACCESS_TOKEN=""
# Option 2: S2S Authentication (recommended for production)
LLMGW_CLIENT_ID=""
LLMGW_CLIENT_SECRET=""
# Optional for tracking and BYOM
LLMGW_SEMANTIC_USER_ID=""
LLMGW_ACTION_ID=""
LLMGW_OPERATION_CODE=""
LlMGW_ADDITIONAL_HEADERS=""