To get the next question, you need to answer the first question. The response can be a string for input type questions or a list of strings (ids) for choice type questions.get response
For input type question
Copy
Ask AI
user_input = "2001-03-14" # example date of birthfirst_question_response = response( # format the user's input question=first_question, answer=user_input)
For choice type question
Copy
Ask AI
choice_ids = ["abc", "def"] first_question_response = response( # format the user's choices question=first_question answer=choice_ids)
Click here to know more about types of question component
get the next question using first_question_response