-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.yaml
More file actions
124 lines (120 loc) · 3.8 KB
/
application.yaml
File metadata and controls
124 lines (120 loc) · 3.8 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
applications:
- id: "app"
name: "Default Application"
description: "Default application for testing"
privacyKeys:
- "priv"
registry:
interface:
options:
- name: "MODEL_API_KEY"
type: "string"
description: "API key for the model provider"
- name: "MODEL_NAME"
type: "string"
description: "What model to use (e.g 'gpt-4.1')"
default: "gpt-4.1"
- name: "MODEL_PROVIDER"
type: "string"
description: "What model provider to use (e.g 'openai', etc)"
default: "openai"
- name: "MODEL_MAX_TOKENS"
type: "string"
description: "Max tokens to use"
default: "16000"
- name: "MODEL_TEMPERATURE"
type: "string"
description: "What model temperature to use"
default: "0.3"
- name: "TIMEOUT_MS"
type: "number"
description: "Connection/tool timeouts in ms"
default: 60000
runtime:
type: "executable"
command: [ "bash", "-c", "../run_agent.sh ../agents/interface/main.py" ]
environment:
- option: "MODEL_API_KEY"
- option: "MODEL_NAME"
- option: "MODEL_PROVIDER"
- option: "MODEL_MAX_TOKENS"
- option: "MODEL_TEMPERATURE"
- option: "TIMEOUT_MS"
github:
options:
- name: "MODEL_API_KEY"
type: "string"
description: "API key for the model provider"
- name: "GITHUB_PERSONAL_ACCESS_TOKEN"
type: "string"
description: "Github token for the service"
- name: "MODEL_NAME"
type: "string"
description: "What model to use (e.g 'gpt-4.1')"
default: "gpt-4.1"
- name: "MODEL_PROVIDER"
type: "string"
description: "What model provider to use (e.g 'openai', etc)"
default: "openai"
- name: "MODEL_MAX_TOKENS"
type: "string"
description: "Max tokens to use"
default: "16000"
- name: "MODEL_TEMPERATURE"
type: "string"
description: "What model temperature to use"
default: "0.3"
- name: "TIMEOUT_MS"
type: "number"
description: "Connection/tool timeouts in ms"
default: 300
runtime:
type: "executable"
command: [ "bash", "-c", "../run_agent.sh ../agents/github/main.py" ]
environment:
- option: "MODEL_API_KEY"
- option: "GITHUB_PERSONAL_ACCESS_TOKEN"
- option: "MODEL_NAME"
- option: "MODEL_PROVIDER"
- option: "MODEL_MAX_TOKENS"
- option: "MODEL_TEMPERATURE"
- option: "TIMEOUT_MS"
firecrawl:
options:
- name: "MODEL_API_KEY"
type: "string"
description: "API key for the model provider"
- name: "FIRECRAWL_API_KEY"
type: "string"
description: "FIRECRAWL API KEY for the service"
- name: "MODEL_NAME"
type: "string"
description: "What model to use (e.g 'gpt-4.1')"
default: "gpt-4.1"
- name: "MODEL_PROVIDER"
type: "string"
description: "What model provider to use (e.g 'openai', etc)"
default: "openai"
- name: "MODEL_MAX_TOKENS"
type: "string"
description: "Max tokens to use"
default: "16000"
- name: "MODEL_TEMPERATURE"
type: "string"
description: "What model temperature to use"
default: "0.3"
- name: "TIMEOUT_MS"
type: "number"
description: "Connection/tool timeouts in ms"
default: 300
runtime:
type: "executable"
command: ["bash", "-c", "../run_agent.sh ../agents/firecrawl/main.py"]
environment:
- option: "MODEL_API_KEY"
- option: "FIRECRAWL_API_KEY"
- option: "MODEL_NAME"
- option: "MODEL_PROVIDER"
- option: "MODEL_MAX_TOKENS"
- option: "MODEL_TEMPERATURE"
- option: "TIMEOUT_MS"