-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsample-environments.yaml
More file actions
73 lines (73 loc) · 2.03 KB
/
sample-environments.yaml
File metadata and controls
73 lines (73 loc) · 2.03 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
apiVersion: v1
kind: ConfigMap
metadata:
name: sample-environments
data:
ollama: |
[
{"name": "LLM_API_BASE", "value": "http://host.docker.internal:11434/v1"},
{"name": "LLM_API_KEY", "value": "dummy"},
{"name": "LLM_MODEL", "value": "llama3.2:3b-instruct-fp16"}
]
openai: |
[
{
"name": "OPENAI_API_KEY",
"valueFrom": {"secretKeyRef": {"name": "openai-secret", "key": "apikey"}}
},
{
"name": "LLM_API_KEY",
"valueFrom": {"secretKeyRef": {"name": "openai-secret", "key": "apikey"}}
},
{"name": "LLM_API_BASE", "value": "https://api.openai.com/v1"},
{"name": "LLM_MODEL", "value": "gpt-4o-mini-2024-07-18"}
]
# mcp weather assumes we are using streamable-http transport
mcp-weather: |
[
{"name": "MCP_URL", "value": "http://weather-tool:8000/mcp"}
]
mcp-slack: |
[
{"name": "MCP_URL", "value": "http://slack-tool:8000/mcp"}
]
mcp-reservations: |
[
{"name": "MCP_URL", "value": "http://reservation-tool:8000/mcp"}
]
mcp-slack-config: |
[
{
"name": "SLACK_BOT_TOKEN",
"valueFrom": {"secretKeyRef": {"name": "slack-secret", "key": "bot-token"}}
}
]
# mcp shopping uses http transport
mcp-shopping: |
[
{"name": "MCP_URL", "value": "http://shopping-tool:8000/mcp"}
]
mcp-shopping-config: |
[
{
"name": "SERPAPI_API_KEY",
"valueFrom": {"secretKeyRef": {"name": "shopping-secret", "key": "serpapi-key"}}
}
]
slack-researcher-config: |
[
{"name": "TASK_MODEL_ID", "value": "granite3.3:8b"},
{"name": "EXTRA_HEADERS", "value": "{}"},
{"name": "MODEL_TEMPERATURE", "value": "0"},
{"name": "MAX_PLAN_STEPS", "value": "6"},
{"name": "SERVICE_PORT", "value": "8000"},
{"name": "LOG_LEVEL", "value": "INFO"}
]
mcp-flight: |
[
{"name": "MCP_URL", "value": "http://flight-tool:8000/mcp"}
]
mcp-image: |
[
{"name": "MCP_URL", "value": "http://image-tool:8000/mcp"}
]