make-llm-files/llm_chat.php
Frederico @ VilaRosa02 a8d61e51b2 init
2025-08-26 09:43:48 +00:00

12 lines
237 B
PHP
Executable File

#!/usr/bin/php
<?php
$exec_name = array_shift($argv);
$system_root_message = file_get_contents(array_shift($argv));
foreach($argv as $filename)
$messages[] = file_get_contents($filename);
require __DIR__."/llama_chat_template.php";