hkulekci/cohere

Installs: 425

Dependents: 2

Suggesters: 0

Security: 0

Stars: 5

Watchers: 2

Forks: 2

Open Issues: 0

pkg:composer/hkulekci/cohere

dev-main 2023-04-25 20:56 UTC

This package is auto-updated.

Last update: 2025-09-26 02:04:41 UTC


README

include_once 'vendor/autoload.php';
const API_KEY = '------API_KEY------';

$config = (new \Cohere\Config(API_KEY));
$client = new \Cohere\Client($config);

$response = $client->embed(['hello']);

var_dump($response);