From 3eaa56f0306ead818f64c3d99fc6d230d9b970a4 Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Wed, 18 Feb 2026 20:42:03 -0500 Subject: HERE WE GO, HERE WE GO, HERE WE GO --- jb-ui/src/api_fsb/docs/ProfilingConfig.md | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 jb-ui/src/api_fsb/docs/ProfilingConfig.md (limited to 'jb-ui/src/api_fsb/docs/ProfilingConfig.md') diff --git a/jb-ui/src/api_fsb/docs/ProfilingConfig.md b/jb-ui/src/api_fsb/docs/ProfilingConfig.md new file mode 100644 index 0000000..22d329d --- /dev/null +++ b/jb-ui/src/api_fsb/docs/ProfilingConfig.md @@ -0,0 +1,34 @@ +# ProfilingConfig + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**enabled** | **boolean** | If False, the harmonizer/profiling system is not used at all. This should never be False unless special circumstances | [optional] [default to true] +**grs_enabled** | **boolean** | If grs_enabled is False, and is_grs is passed in the profiling-questions call, then don\'t actually return any questions. This allows a client to hit the endpoint with no limit and still get questions. In effect, this means that we\'ll redirect the user through the GRS system but won\'t present them any questions. | [optional] [default to true] +**n_questions** | **number** | | [optional] [default to undefined] +**max_questions** | **number** | The max number of questions we would ask in a session | [optional] [default to 10] +**avg_question_count** | **number** | The average number of questions to ask in a session | [optional] [default to 5] +**task_injection_freq_mult** | **number** | Scale how frequently we inject profiling questions, relative to the default.1 is default, 2 is twice as often. 10 means always. 0.5 half as often | [optional] [default to 1] +**non_us_mult** | **number** | Non-us multiplier, used to increase freq and length of profilers in all non-us countries.This value is multiplied by task_injection_freq_mult and avg_question_count. | [optional] [default to 2] +**hidden_questions_expiration_hours** | **number** | How frequently we should refresh hidden questions | [optional] [default to 168] + +## Example + +```typescript +import { ProfilingConfig } from './api'; + +const instance: ProfilingConfig = { + enabled, + grs_enabled, + n_questions, + max_questions, + avg_question_count, + task_injection_freq_mult, + non_us_mult, + hidden_questions_expiration_hours, +}; +``` + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) -- cgit v1.2.3