FreeScoutGPT/vendor/haozi-team/chatgpt-php/tests/V1Test.php
Михаил Баринов 7210a52e55 first commit
2023-04-14 01:35:57 +03:00

45 lines
1.6 KiB
PHP

<?php
use HaoZiTeam\ChatGPT\V1;
$accessToken = getenv('OPENAI_ACCESS_TOKEN');
$chatGPT = new V1();
$chatGPT->addAccount($accessToken);
$test = $chatGPT->ask('Hello');
$conversationId = $test['conversation_id'];
$parentId = $test['parent_id'];
it('should get a new conversation', function () use ($chatGPT) {
$return = $chatGPT->ask('Hello');
$this->assertArrayHasKey('answer', $return);
})->group('working');
it('should get a conversations array', function () use ($chatGPT) {
$return = $chatGPT->getConversations();
$this->assertIsArray($return);
})->group('working');
it('should get an array of a conversation', function () use ($chatGPT, $conversationId, $parentId) {
$return = $chatGPT->getConversationMessages($conversationId);
$this->assertIsArray($return);
})->group('working');
it('should auto generate conversation title', function () use ($chatGPT, $conversationId, $parentId) {
$return = $chatGPT->generateConversationTitle($conversationId, $parentId);
$this->assertTrue($return);
})->group('working');
it('should setting conversation title', function () use ($chatGPT, $conversationId, $parentId) {
$return = $chatGPT->updateConversationTitle($conversationId, 'test');
$this->assertTrue($return);
})->group('working');
it('should delete conversation', function () use ($chatGPT, $conversationId, $parentId) {
$return = $chatGPT->deleteConversation($conversationId);
$this->assertTrue($return);
})->group('working');
it('should delete conversations', function () use ($chatGPT) {
$return = $chatGPT->clearConversations();
$this->assertTrue($return);
})->group('working');