xref: /plugin/aichat/Model/VoyageAI/EmbeddingModel.php (revision 7775eee7bc2214cbd8bc6b5c95ff60d44e95c8c2)
187e46484SAndreas Gohr<?php
287e46484SAndreas Gohr
387e46484SAndreas Gohrnamespace dokuwiki\plugin\aichat\Model\VoyageAI;
487e46484SAndreas Gohr
587e46484SAndreas Gohruse dokuwiki\plugin\aichat\Model\AbstractModel;
687e46484SAndreas Gohruse dokuwiki\plugin\aichat\Model\EmbeddingInterface;
72e22aefbSAndreas Gohruse dokuwiki\plugin\aichat\Model\Generic\AbstractGenericModel;
8*7775eee7SAndreas Gohruse dokuwiki\plugin\aichat\Model\Generic\EmbeddingModel as GenericEmbeddingModel;
987e46484SAndreas Gohr
10*7775eee7SAndreas Gohrclass EmbeddingModel extends GenericEmbeddingModel
1187e46484SAndreas Gohr{
122e22aefbSAndreas Gohr    protected $apiurl = 'https://api.voyageai.com/v1/';
1387e46484SAndreas Gohr}
14