13 lines
159 B
PHP
13 lines
159 B
PHP
<?php
|
|
|
|
namespace App\Repositories\LLM;
|
|
|
|
class ChatResponse
|
|
{
|
|
public ChatEnum $type;
|
|
|
|
public FunctionCall $functionCall;
|
|
|
|
public string $content;
|
|
}
|