@@ -3,67 +3,67 @@ default_to_workspace = false
3
3
skip_core_tasks = true
4
4
5
5
[tasks .clean ]
6
- command = " cargo"
7
- args = [" clean" ]
6
+ command = " cargo"
7
+ args = [" clean" ]
8
8
9
9
[tasks .unit-tests ]
10
- command = " cargo"
11
- args = [" test" ]
10
+ command = " cargo"
11
+ args = [" test" ]
12
12
13
13
[tasks .build-anthropic ]
14
14
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
15
15
command = " cargo-component"
16
- args = [" build" , " -p" , " golem-llm-anthropic" ]
16
+ args = [" build" , " -p" , " golem-llm-anthropic" ]
17
17
18
18
[tasks .build-anthropic-portable ]
19
19
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
20
20
command = " cargo-component"
21
- args = [" build" , " -p" , " golem-llm-anthropic" , " --no-default-features" ]
21
+ args = [" build" , " -p" , " golem-llm-anthropic" , " --no-default-features" ]
22
22
23
23
[tasks .build-grok ]
24
24
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
25
25
command = " cargo-component"
26
- args = [" build" , " -p" , " golem-llm-grok" ]
26
+ args = [" build" , " -p" , " golem-llm-grok" ]
27
27
28
28
[tasks .build-grok-portable ]
29
29
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
30
30
command = " cargo-component"
31
- args = [" build" , " -p" , " golem-llm-grok" , " --no-default-features" ]
31
+ args = [" build" , " -p" , " golem-llm-grok" , " --no-default-features" ]
32
32
33
33
[tasks .build-openai ]
34
34
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
35
35
command = " cargo-component"
36
- args = [" build" , " -p" , " golem-llm-openai" ]
36
+ args = [" build" , " -p" , " golem-llm-openai" ]
37
37
38
38
[tasks .build-openai-portable ]
39
39
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
40
40
command = " cargo-component"
41
- args = [" build" , " -p" , " golem-llm-openai" , " --no-default-features" ]
41
+ args = [" build" , " -p" , " golem-llm-openai" , " --no-default-features" ]
42
42
43
43
[tasks .build-openrouter ]
44
44
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
45
45
command = " cargo-component"
46
- args = [" build" , " -p" , " golem-llm-openrouter" ]
46
+ args = [" build" , " -p" , " golem-llm-openrouter" ]
47
47
48
48
[tasks .build-openrouter-portable ]
49
49
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
50
50
command = " cargo-component"
51
- args = [" build" , " -p" , " golem-llm-openrouter" , " --no-default-features" ]
51
+ args = [" build" , " -p" , " golem-llm-openrouter" , " --no-default-features" ]
52
52
53
53
[tasks .build ]
54
54
dependencies = [
55
55
" build-anthropic" ,
56
56
" build-grok" ,
57
57
" build-openai" ,
58
- " build-openrouter"
58
+ " build-openrouter" ,
59
59
]
60
60
61
61
[tasks .build-portable ]
62
62
dependencies = [
63
63
" build-anthropic-portable" ,
64
64
" build-grok-portable" ,
65
65
" build-openai-portable" ,
66
- " build-openrouter-portable"
66
+ " build-openrouter-portable" ,
67
67
]
68
68
69
69
[tasks .build-all ]
@@ -91,57 +91,69 @@ cp target/wasm32-wasip1/debug/golem_llm_openrouter.wasm components/debug/golem_l
91
91
[tasks .release-build-anthropic ]
92
92
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
93
93
command = " cargo-component"
94
- args = [" build" , " -p" , " golem-llm-anthropic" , " --release" ]
94
+ args = [" build" , " -p" , " golem-llm-anthropic" , " --release" ]
95
95
96
96
[tasks .release-build-anthropic-portable ]
97
97
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
98
98
command = " cargo-component"
99
- args =[" build" , " -p" , " golem-llm-anthropic" , " --release" , " --no-default-features" ]
99
+ args = [
100
+ " build" ,
101
+ " -p" ,
102
+ " golem-llm-anthropic" ,
103
+ " --release" ,
104
+ " --no-default-features" ,
105
+ ]
100
106
101
107
[tasks .release-build-grok ]
102
108
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
103
109
command = " cargo-component"
104
- args = [" build" , " -p" , " golem-llm-grok" , " --release" ]
110
+ args = [" build" , " -p" , " golem-llm-grok" , " --release" ]
105
111
106
112
[tasks .release-build-grok-portable ]
107
113
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
108
114
command = " cargo-component"
109
- args = [" build" , " -p" , " golem-llm-grok" , " --release" , " --no-default-features" ]
115
+ args = [" build" , " -p" , " golem-llm-grok" , " --release" , " --no-default-features" ]
110
116
111
117
[tasks .release-build-openai ]
112
118
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
113
119
command = " cargo-component"
114
- args = [" build" , " -p" , " golem-llm-openai" , " --release" ]
120
+ args = [" build" , " -p" , " golem-llm-openai" , " --release" ]
115
121
116
122
[tasks .release-build-openai-portable ]
117
123
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
118
124
command = " cargo-component"
119
- args = [" build" , " -p" , " golem-llm-openai" , " --release" , " --no-default-features" ]
125
+ args = [" build" , " -p" , " golem-llm-openai" , " --release" , " --no-default-features" ]
120
126
121
127
[tasks .release-build-openrouter ]
122
128
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
123
129
command = " cargo-component"
124
- args = [" build" , " -p" , " golem-llm-openrouter" , " --release" ]
130
+ args = [" build" , " -p" , " golem-llm-openrouter" , " --release" ]
125
131
126
132
[tasks .release-build-openrouter-portable ]
127
133
install_crate = { crate_name = " cargo-component" , version = " 0.20.0" }
128
134
command = " cargo-component"
129
- args =[" build" , " -p" , " golem-llm-openrouter" , " --release" , " --no-default-features" ]
135
+ args = [
136
+ " build" ,
137
+ " -p" ,
138
+ " golem-llm-openrouter" ,
139
+ " --release" ,
140
+ " --no-default-features" ,
141
+ ]
130
142
131
143
[tasks .release-build ]
132
144
dependencies = [
133
145
" release-build-anthropic" ,
134
146
" release-build-grok" ,
135
147
" release-build-openai" ,
136
- " release-build-openrouter"
148
+ " release-build-openrouter" ,
137
149
]
138
150
139
151
[tasks .release-build-portable ]
140
152
dependencies = [
141
153
" release-build-anthropic-portable" ,
142
154
" release-build-grok-portable" ,
143
155
" release-build-openai-portable" ,
144
- " release-build-openrouter-portable"
156
+ " release-build-openrouter-portable" ,
145
157
]
146
158
147
159
[tasks .release-build-all ]
@@ -255,7 +267,7 @@ args = [
255
267
description = " Builds all test components with golem-cli"
256
268
install_crate = " cargo-binstall"
257
269
script = '''
258
- cargo-binstall golem-cli@1.2.2-dev.10 --locked --force --no-confirm
270
+ cargo-binstall golem-cli@1.2.2-dev.11 --locked --force --no-confirm
259
271
cd test
260
272
golem-cli app clean
261
273
golem-cli app build -b anthropic-debug
0 commit comments