Skip to content
Discussion options

You must be logged in to vote

The problem is this line:

options.ConversationId ??= response.ConversationId;

That should be more like:

if (response.ConversationId is not null)
{
    options.ConversationId = response.ConversationId;
}

With responses, each response has its own unique ID, and you need to tell subsequent requests which conversation to continue.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by flintlouis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants