Skip to content

Commit

Permalink
Merge pull request #3008 from the-deep/feature/remove-framework-mapping
Browse files Browse the repository at this point in the history
Support LLM assisted tagging
  • Loading branch information
subinasr authored Dec 10, 2024
2 parents 2a96517 + cf023f5 commit ba6649f
Show file tree
Hide file tree
Showing 45 changed files with 306 additions and 4,124 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ import {

import EntryInput from '#components/entry/EntryInput';
import { GeoArea } from '#components/GeoMultiSelectInput';
import { WidgetHint } from '#types/newAnalyticalFramework';
import { Framework } from '#components/entry/types';
import {
PartialEntryType,
PartialAttributeType,
PartialEntryType,
} from '#components/entry/schema';

import styles from './styles.css';
Expand All @@ -35,8 +34,7 @@ interface Props<NAME extends string | number | undefined> {
geoAreaOptions: GeoArea[] | undefined | null;
onGeoAreaOptionsChange: React.Dispatch<React.SetStateAction<GeoArea[] | undefined | null>>;
predictionsLoading?: boolean;
hints: WidgetHint[] | undefined;
recommendations: PartialAttributeType[] | undefined;
recommendations?: PartialAttributeType[] | undefined;
predictionsErrored: boolean;
name: NAME;
messageText: string | undefined;
Expand All @@ -62,7 +60,6 @@ function AssistPopup<NAME extends string | number | undefined>(props: Props<NAME
geoAreaOptions,
onGeoAreaOptionsChange,
predictionsLoading,
hints,
predictionsErrored,
messageText,
recommendations,
Expand Down Expand Up @@ -133,7 +130,6 @@ function AssistPopup<NAME extends string | number | undefined>(props: Props<NAME
geoAreaOptions={geoAreaOptions}
onGeoAreaOptionsChange={onGeoAreaOptionsChange}
allWidgets={allWidgets}
widgetsHints={hints}
recommendations={recommendations}
emptyValueHidden
addButtonHidden
Expand Down
Loading

0 comments on commit ba6649f

Please sign in to comment.