PHP Classes

File: src/Api/OpenAiApi.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   PHP OpenAI Library   src/Api/OpenAiApi.php   Download  
File: src/Api/OpenAiApi.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP OpenAI Library
Search engine for text using OpenAI API
Author: By
Last change:
Date: 1 year ago
Size: 199 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
PH7\OpenAi\Api;

enum OpenAiApi: string
{
    case
URL = 'https://api.openapi.com/';
    case
VERSION = 'v1';
    case
CONTENT_TYPE = 'application/json';
}