-
Mateusz Charytoniuk authoredMateusz Charytoniuk authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
LlmChatHistory.php 238 B
<?php
declare(strict_types=1);
namespace Distantmagic\Resonance;
readonly class LlmChatHistory
{
/**
* @param array<LlmChatMessage> $messages
*/
public function __construct(
public array $messages,
) {}
}