php-llm-agent/tests/03_system_major_role.php
Frederico @ VilaRosa02 436e0e57c5 new version
2025-09-10 11:40:03 +00:00

9 lines
423 B
PHP

<?php require_once __DIR__."/../LlamaCli.func.php";
// TEST 03: Simple query with SYSTEM PRIMING message
$summary = LlamaCli(file_get_contents("test_input_data.3.txt"),"You are an executive assistant that will summarize english text in 1 paragraph");
$title = LlamaCli($summary[0],"You are an talented journalist that will produce a provocative headline title based on a summary of a text");
print_r([$summary,$title]);