Get the messages in a stored chat completion. Only Chat Completions that have been created with the store parameter set to true will be returned.
store
true
Optional
// Automatically fetches more pages as needed.for await (const chatCompletionStoreMessage of client.chat.completions.messages.list( 'completion_id',)) { // ...} Copy
// Automatically fetches more pages as needed.for await (const chatCompletionStoreMessage of client.chat.completions.messages.list( 'completion_id',)) { // ...}
Get the messages in a stored chat completion. Only Chat Completions that have been created with the
store
parameter set totrue
will be returned.