An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hello Nico Herrera,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
The reason is because you're receiving the response in streaming mode instead of a complete response. Check your code and disable Streaming Mode by setting the stream parameter in the request body to false (the default).
{
"messages": [
{
"role": "user",
"content": "Your input here"
}
],
"max_tokens": 100,
"stream": false
}
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.