You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We represent a filter as an unnamed list. It will be nice to read the meta information from the filters and prepare the dataset for consumption by LLM.
It should be possible to read the information from step or from cohort metadata using the id or name of the filter.
The filters are store in meta information of cohort.
coh$attributes$available_filters
It's unnamed list.
We need to implement functions that allow us:
getting metadata of single filter by name(for example dataset and name) or id
getting metadata of dataset
the output should be grouped by dataset
predefine function to return the list of the text description for llm model
Example prompt optimalization:
Similarity search on filters base on user prompt
Minimal example:
`study` - The description of study dataset
The `study` dataset contains filters:
- `id(name)` - Unique idetifier of study - Filter id: `filter_id`
- `study_number(name)` - Description of the study number - Filter id: `filter_id`
`other_dataset` - Other dataset description
- `id(name)` - Unique idetifier of id - Filter id: `filter_id`
- `custom_val(name)` - Description of `custom_val` - Filter id: `filter_id`
The text was updated successfully, but these errors were encountered:
We represent a filter as an unnamed list. It will be nice to read the meta information from the filters and prepare the dataset for consumption by LLM.
It should be possible to read the information from step or from cohort metadata using the
id
orname
of the filter.Example:
The filters are store in meta information of cohort.
It's unnamed list.
We need to implement functions that allow us:
name
(for exampledataset
andname
) orid
Example prompt optimalization:
Minimal example:
The text was updated successfully, but these errors were encountered: