Closed desaxce closed 6 months ago
This pull request allows users to change the participant ID in a thread.
First issue came up with with client.thread() as thread and trying to change thread.participant_id because the upsert was looking at the wrong field.
with client.thread() as thread
thread.participant_id
upsert
Second issue comes from the to_dict method which attempts to read self.participant_identifier, that's why we need to initialize it to None.
to_dict
self.participant_identifier
None
This change is
Add cookbook on how to evaluate a discussion. Rating a conversation. Goal: from the beginning, conv is well supported Example cookbook: customer satisfaction evaluation
This pull request allows users to change the participant ID in a thread.
First issue came up with
with client.thread() as thread
and trying to changethread.participant_id
because theupsert
was looking at the wrong field.Second issue comes from the
to_dict
method which attempts to readself.participant_identifier
, that's why we need to initialize it toNone
.This change is