amber-laravel/app/Repositories/LLM/ChatResponse.php

13 lines
159 B
PHP
Raw Normal View History

2024-07-24 17:16:41 +00:00
<?php
namespace App\Repositories\LLM;
class ChatResponse
{
public ChatEnum $type;
public FunctionCall $functionCall;
public string $content;
}