-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom_agents.env
More file actions
78 lines (63 loc) · 2.71 KB
/
custom_agents.env
File metadata and controls
78 lines (63 loc) · 2.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Custom Agent Configuration
# Define your deployed agents across cloud platforms
# =============================================================================
# CUSTOM AGENT ENDPOINTS
# Add your deployed agent URLs here
#
# For unauthenticated agents, set API_KEY to "NONE" or leave empty
# For authenticated agents, provide the actual API key
# For built-in SK agents, set TYPE to "builtin" (no endpoint needed)
# =============================================================================
# Built-in Semantic Kernel Agents (use your Azure OpenAI)
# Uncomment these to add built-in SK agents that simulate cloud expertise
# AWS_AGENT_1_NAME=Alexandra
# AWS_AGENT_1_TYPE=builtin
# AWS_AGENT_1_COLOR=Red
# AZURE_AGENT_1_NAME=Benjamin
# AZURE_AGENT_1_TYPE=builtin
# AZURE_AGENT_1_COLOR=Orange
# AWS Custom Agents
# AWS_AGENT_1_NAME=CustomAWS-DataProcessor
# AWS_AGENT_1_ENDPOINT=https://your-aws-agent-1.amazonaws.com/api/chat
# AWS_AGENT_1_API_KEY=your-aws-agent-1-api-key
# AWS_AGENT_1_COLOR=Red
# AWS_AGENT_2_NAME=CustomAWS-MLAnalyzer-Public
# AWS_AGENT_2_ENDPOINT=https://your-public-aws-agent.amazonaws.com/api/chat
# AWS_AGENT_2_API_KEY=NONE
# AWS_AGENT_2_COLOR=Green
# Azure Custom Agents
# AZURE_AGENT_1_NAME=CustomAzure-DocumentAnalyzer
# AZURE_AGENT_1_ENDPOINT=https://your-azure-agent-1.azurewebsites.net/api/chat
# AZURE_AGENT_1_API_KEY=your-azure-agent-1-api-key
# AZURE_AGENT_1_COLOR=Orange
# AZURE_AGENT_2_NAME=CustomAzure-ImageProcessor-Open
# AZURE_AGENT_2_ENDPOINT=https://your-open-azure-agent.azurewebsites.net/api/chat
# AZURE_AGENT_2_API_KEY=
# AZURE_AGENT_2_COLOR=Blue
# GCP Custom Agents
GCP_AGENT_1_NAME=helloworld-a2a-agent
GCP_AGENT_1_ENDPOINT=https://helloworld-a2a-agent-683403434618.us-central1.run.app/
GCP_AGENT_1_API_KEY=NONE
GCP_AGENT_1_COLOR=Blue
# GCP_AGENT_1_NAME=CustomGCP-NLPService
# GCP_AGENT_1_ENDPOINT=https://your-gcp-agent-1.run.app/api/chat
# GCP_AGENT_1_API_KEY=your-gcp-agent-1-api-key
# GCP_AGENT_1_COLOR=Yellow
# GCP_AGENT_2_NAME=CustomGCP-VideoAnalyzer-Public
# GCP_AGENT_2_ENDPOINT=https://your-public-gcp-agent.run.app/api/chat
# GCP_AGENT_2_API_KEY=NONE
# GCP_AGENT_2_COLOR=Indigo
# Multi-Cloud Orchestrator
# MULTICLOUD_AGENT_1_NAME=CustomOrchestrator-Gateway
# MULTICLOUD_AGENT_1_ENDPOINT=https://your-orchestrator.example.com/api/chat
# MULTICLOUD_AGENT_1_API_KEY=your-orchestrator-api-key
# MULTICLOUD_AGENT_1_COLOR=Violet
# =============================================================================
# AGENT WORKFLOW CONFIGURATION
# =============================================================================
# Enable/disable agents from configuration (true/false)
USE_CUSTOM_AGENTS=true
# Custom agent timeout (seconds)
CUSTOM_AGENT_TIMEOUT=30
# Custom agent retry attempts
CUSTOM_AGENT_RETRIES=3