*/
export function elicitationResultFromAnswers(
response: ChatInputResponseKind,
answers: Record<string, ChatInputAnswer> | undefined,
): ElicitationResult {
if (response === ChatInputResponseKind.Decline) {
return { action: 'decline' };
}