{"prompt":"Item=handbag, Color=army_green, price=$99, size=S->", "completion":" This stylish small green handbag will add a unique touch to your look, without costing you a fortune."}
Text from Human: I want item of handbag and color as army green.
Expected Response is
This stylish small green handbag will add a unique touch to your look, without costing you a fortune.
$complete = $open_ai->completion([
'model' => 'davinci:ft-personal:infy7latest-2023-02-08-05-24-19',//custom model name
'prompt' => $prompt,
'temperature' => 0.7,
'max_tokens' => 256,
'top_p' => 1,
'frequency_penalty' => 0,
'presence_penalty' => 0,
'stream' => true
], function($curl_info, $data){
echo $data;
echo PHP_EOL;
ob_flush();
flush();
return strlen($data);
});







