25 lines
349 B
PHP
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);
|
|
|
|
|
|
|
|
|