-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEmbeddings.php
More file actions
29 lines (25 loc) · 717 Bytes
/
Embeddings.php
File metadata and controls
29 lines (25 loc) · 717 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
<?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\Gemini;
use Symfony\AI\Platform\Bridge\Gemini\Embeddings\TaskType;
use Symfony\AI\Platform\Model;
/**
* @author Valtteri R <[email protected]>
*/
class Embeddings extends Model
{
/**
* @param array{dimensions?: int, task_type?: TaskType|string} $options
*/
public function __construct(string $name, array $capabilities = [], array $options = [])
{
parent::__construct($name, $capabilities, $options);
}
}