mirror of
https://gh.wpcy.net/https://github.com/presswizards/FreeScoutGPT.git
synced 2026-07-16 11:02:38 +08:00
45 lines
1.6 KiB
PHP
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');
|