siteorigin/openai-api

This package is abandoned and no longer maintained. No replacement package was suggested.

A PHP wrapper for the OpenAI API

1.1.2 2022-03-09 09:26 UTC

This package is auto-updated.

Last update: 2023-12-22 05:16:22 UTC


README

This repository for the OpenAI PHP Wrapper, developed by SiteOrigin, is now archived. For updated and ongoing PHP integration with OpenAI's API, please refer to the OpenAI PHP Client instead.

Original Repository Details:

Features:

  • Provided a comprehensive interface for the OpenAI API in PHP.
  • Simplified syntax for common tasks like generating completions.
  • Supported full API functionality without constraints.

Example Code Snippet:

use SiteOrigin\OpenAI\Client;
$client = new Client($_ENV['OPENAI_API_KEY']);
// Example usage for generating completions
$completions = $client->completions('davinci')->complete("Sample prompt", [/* parameters */]);
foreach($completions as $c) {
    echo $c->text . "\n";
}

Further Information:

For those who previously utilized or are interested in this PHP wrapper, it's recommended to transition to the new OpenAI PHP Client for the latest updates and continued support.