This repository has been archived on 2026-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
php-agentic/Models/PromptVersion.php

73 lines
1.6 KiB
PHP
Raw Normal View History

2026-01-27 00:28:29 +00:00
<?php
declare(strict_types=1);
namespace Core\Mod\Agentic\Models;
2026-01-27 00:28:29 +00:00
use Core\Tenant\Models\User;
2026-01-27 00:28:29 +00:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Prompt version snapshot for history and rollback.
*
* Captures the state of a prompt at a point in time, enabling
* version history and rollback via the restore() method.
*
* @property int $id
* @property int $prompt_id
* @property int $version
* @property string|null $system_prompt
* @property string|null $user_template
* @property array|null $variables
* @property int|null $created_by
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
*/
2026-01-27 00:28:29 +00:00
class PromptVersion extends Model
{
protected $fillable = [
'prompt_id',
'version',
'system_prompt',
'user_template',
'variables',
'created_by',
];
protected $casts = [
'variables' => 'array',
'version' => 'integer',
];
/**
* Get the parent prompt.
*/
public function prompt(): BelongsTo
{
return $this->belongsTo(Prompt::class);
}
/**
* Get the user who created this version.
*/
public function creator(): BelongsTo
{
return $this->belongsTo(User::class, 'created_by');
}
/**
* Restore this version to the parent prompt.
*/
public function restore(): Prompt
{
$this->prompt->update([
'system_prompt' => $this->system_prompt,
'user_template' => $this->user_template,
'variables' => $this->variables,
]);
return $this->prompt;
}
}