File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 145
145
// commands
146
146
->set ('ai.command.chat ' , ChatCommand::class)
147
147
->args ([
148
- tagged_locator ('ai.agent ' , indexAttribute: 'name ' ),
148
+ tagged_locator ('ai.agent ' , 'name ' ),
149
149
])
150
150
->tag ('console.command ' )
151
151
->set ('ai.command.setup_store ' , SetupStoreCommand::class)
152
152
->args ([
153
- tagged_locator ('ai.store ' , indexAttribute: 'name ' ),
153
+ tagged_locator ('ai.store ' , 'name ' ),
154
154
])
155
155
->tag ('console.command ' )
156
156
->set ('ai.command.drop_store ' , DropStoreCommand::class)
157
157
->args ([
158
- tagged_locator ('ai.store ' , indexAttribute: 'name ' ),
158
+ tagged_locator ('ai.store ' , 'name ' ),
159
159
])
160
160
->tag ('console.command ' )
161
161
->set ('ai.command.index ' , IndexCommand::class)
162
162
->args ([
163
- tagged_locator ('ai.indexer ' , indexAttribute: 'name ' ),
163
+ tagged_locator ('ai.indexer ' , 'name ' ),
164
164
])
165
165
->tag ('console.command ' )
166
166
;
Original file line number Diff line number Diff line change 28
28
use Symfony \Component \DependencyInjection \ServiceLocator ;
29
29
30
30
/**
31
- * @author Oskar Stark <oskarstark@gmail .com>
31
+ * @author Oskar Stark <oskarstark@googlemail .com>
32
32
*/
33
33
#[AsCommand(
34
34
name: 'ai:chat ' ,
Original file line number Diff line number Diff line change 10
10
*/
11
11
12
12
/**
13
- * @author Oskar Stark <oskarstark@gmail .com>
13
+ * @author Oskar Stark <oskarstark@googlemail .com>
14
14
*/
15
15
16
16
namespace Symfony \AI \AiBundle \Tests \Command ;
You can’t perform that action at this time.
0 commit comments