add ai-user filter combinations

This commit is contained in:
2026-02-03 19:46:07 +01:00
parent 9a49d1c690
commit 9a587dcc4c
2 changed files with 53 additions and 3 deletions

View File

@@ -130,6 +130,20 @@ def get_filter_combinations(survey: QualtricsSurvey) -> list[dict]:
'filters': {'ai_user': [ai_user]}
})
# AI user daily, more than once daily, en multiple times a week = frequent
combinations.append({
'name': 'AIUser-Frequent',
'filters': {'ai_user': [
'Daily', 'More than once daily', 'Multiple times per week'
]}
})
combinations.append({
'name': 'AIUser-Infrequent',
'filters': {'ai_user': [
'Once a month', 'Less than once a month', 'Once a week'
]}
})
# Investable Assets - one at a time
for investable_assets in survey.options_investable_assets:
combinations.append({