I am using the ChatCompletions endpoint
const response = await fetch("https://api.openai.com/v1/chat/completions",
I am trying to destructure the response as a stream. When I look at the object it does not follow the Type for CreateChatCompletionResponse
This seems to work but typescript is saying the delta property does not exist.
completionResponse.choices[0].delta.content
Am I using the correct type for the response?