-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathModelCatalog.php
More file actions
32 lines (28 loc) · 834 Bytes
/
ModelCatalog.php
File metadata and controls
32 lines (28 loc) · 834 Bytes
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
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\AI\Platform\Bridge\Generic;
use Symfony\AI\Platform\Capability;
use Symfony\AI\Platform\ModelCatalog\AbstractModelCatalog;
/**
* Models need to be registered explicitly here to be routed to the correct ModelClient and ResultConverter
* implementations.
*
* @author Christopher Hertel <[email protected]>
*/
final class ModelCatalog extends AbstractModelCatalog
{
/**
* @param array<string, array{class: class-string, capabilities: list<Capability>}> $models
*/
public function __construct(
protected array $models = [],
) {
}
}