php-llm-agent/tests/02_previous_background_info.php
2025-09-11 10:58:00 +00:00

25 lines
349 B
PHP

<?php require_once __DIR__."/../LlamaCli.func.php";
// TEST 02: Simple query with previous background conversation
$out = LlamaCli("Portugal?","",
[
"previousConversation"=>[
[
"role"=>"user",
"content"=>"What is the capital of France?"
],
[
"role"=>"assistant",
"content"=>"Paris."
]
]
]
);
print_r($out);