I'm trying to use the stream=true property as follows.
completion = openai.Completion.create(
model="text-davinci-003",
prompt="Write me a story about dogs.",
temperature=0.7,
max_tokens=MAX_TOKENS,
frequency_penalty=1.0,
presence_penalty=1.0,
stream=True,
)
Unfortunately, I don't know what to do from here to return it to my React frontend. Typically, I've used standard response objects, setting a status and the serializer.data as the data. From my readings online, it seems I have to use the StreamingHttpResponse
, but I'm not sure how to integrate that with the iterator object of completion
, and actually save the outputted data once it is done streaming, as the view will end after returning the iterator to the endpoint. Any help?