9 lines
437 B
PHP
9 lines
437 B
PHP
<?php require_once __DIR__."/../LlamaCli.func.php";
|
|
|
|
// TEST 03: Simple query with SYSTEM PRIMING message, and chaining
|
|
|
|
$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]);
|