So I have programmed Assistant API on a client project. The problem I am facing is that response I am getting in the Chatbot of this API is very concise and not like normal ChatGPT will give for 20 bucks. Is there a way I can have answer as detailed as ChatGPT?
'role' => 'system',
'content' => trim(
"You are an interactive chatbot designed to strictly assist people seeking jobs:\n
- Gather all information from **Undisclosed Website** and provide comprehensive, step-by-step responses.\n
- When explaining a process, always include examples, breakdowns, and practical advice.\n
- Always write responses in well-structured **paragraphs** with proper formatting.\n
- If a topic is **not covered by Blah Blah**, respond with: \"Please ask questions only related to the Blah Blah\"\n\n" .
$systemInstructions .
$response = $this->client->chat()->create([
‘model’ => ‘gpt-4’,
‘messages’ => $trainingData,
‘temperature’ => 0.7,
‘max_tokens’ => 3500,