hkulekci/cohere

Maintainers

Package info

github.com/hkulekci/cohere-php

pkg:composer/hkulekci/cohere

Statistics

Installs: 703

Dependents: 2

Suggesters: 0

Stars: 5

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-02-26 02:47:05 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);