Skip to content

Commit

Permalink
reorder lenses to prioritize normal text lens
Browse files Browse the repository at this point in the history
  • Loading branch information
neindochoh committed Feb 26, 2024
1 parent 19cb4ca commit 6cc7216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lenses/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import ArrayLens from './ArrayLens';
import AudioLens from './AudioLens';
import HtmlLens from './HtmlLens';
import ImageLens from './ImageLens';
import BoundingBoxLens from './BoundingBoxLens';
import MarkdownLens from './MarkdownLens';
import MeshLens from './MeshLens';
import SafeHtmlLens from './SafeHtmlLens';
Expand All @@ -13,14 +12,14 @@ import TextLens from './TextLens';
import VideoLens from './VideoLens';
import RougeScoreLens from './RougeScoreLens';
import BLEUScoreLens from './BLEUScoreLens';
import BoundingBoxLens from './BoundingBoxLens';

export const ALL_LENSES = [
ArrayLens,
AudioLens,
SpectrogramLens,
VideoLens,
ImageLens,
BoundingBoxLens,
MeshLens,
SequenceLens,
TextLens,
Expand All @@ -30,4 +29,5 @@ export const ALL_LENSES = [
ScalarLens,
RougeScoreLens,
BLEUScoreLens,
BoundingBoxLens,
];

0 comments on commit 6cc7216

Please sign in to comment.