en.ts 1.23 KB
Newer Older
dechen lin's avatar
dechen lin committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { EXTRACTOR_TYPE_LIST } from "@/types/extract-task-type";
import odlLogo from "@/assets/pdf/odl-logo.svg";
import labelLLMLogo from "@/assets/pdf/label-llm.svg";
import labelULogo from "@/assets/pdf/labelU.svg";

export default {
  "extractor.side.tabList": [
    {
      label: "PDF Extraction",
      type: EXTRACTOR_TYPE_LIST.pdf,
    },
    // {
    //   label: "Formula Extraction",
    //   type: EXTRACTOR_TYPE_LIST.formula,
    // },
  ],
  "extractor.side.guide_list": [
    {
      type: "odl",
      icon: odlLogo,
      title: "OpenDataLab",
      desc: "Covers a huge amount of high-quality, multimodal datasets",
      goToText: "Go Now",
      link: "https://opendatalab.com",
    },
    {
      type: "labelU",
      icon: labelULogo,
      title: "Label U Labeling Tool",
      desc: "Lightweight open source annotation tools",
      goToText: "github",
      link: "https://github.com/opendatalab/labelU",
    },
    {
      type: "labelLLM",
      icon: labelLLMLogo,
      [`zh-CN-title`]: "LabelLLM Labeling Tool",
      title: "LabelLLM Labeling Tool",
      desc: "Specializing in dialogue annotation for large language models",
      goToText: "github",
      link: "https://github.com/opendatalab/LabelLLM",
    },
  ],
};