# Improve gish to suppprt chat history
#import tasks/coding.txt

In the following code we save the request to 
Change the following code so that instead of handling a single string as a query, it handles an array of objects with this structure:
[
{ role: "user", content: query },
{ role: "assistant", content: response }
]

This will allow us to provide a history of queries and responses. 

This should work in both streaming and non-streaming mode.

#diff src/gptRequest.ts
