Skip to content

Commit

Permalink
Remove analytical framework mapping and update assisted tagging to wo…
Browse files Browse the repository at this point in the history
…rk with LLM
  • Loading branch information
AdityaKhatri committed Dec 4, 2024
1 parent abf2d1d commit 4c37202
Show file tree
Hide file tree
Showing 35 changed files with 262 additions and 4,056 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 4c37202

Please sign in to comment.