OpenAI PHP Client | Laravel News


OpenAI PHP Client is a supercharged PHP API client that allows you to interact with the OpenAI API.

Here’s a brief example from the package’s readme of using the OpenAI PHP client:

1$client = OpenAI::client('YOUR_API_KEY');

2 

3$result = $client->completions()->create([

4 'model' => 'davinci',

5 'prompt' => 'PHP is',

6]);

7 

8echo $result['choices'][0]['text'];

9// an open-source, widely-used, server-side scripting language.

At the release of this post, the OpenAI PHP client supports the following resources:

OpenAI has a broad range of uses related to natural language processing (NLP), generating code from natural language, and more. To start using the OpenAI package, you’ll need to familiarize yourself with the OpenAI platform. I’d recommend starting with the API docs and OpenAI API examples.

To start using OpenAI with your PHP applications, check out this package on GitHub at openai-php/client.



Source link

Share

Leave a Reply

Your email address will not be published. Required fields are marked *