File size: 1,909 Bytes
e9c0734
0d21acd
e9c0734
 
 
 
 
0d21acd
 
e9c0734
 
d5fd068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e9c0734
 
0d21acd
e9c0734
2a215c2
b73b7f6
e9c0734
 
 
 
 
0d21acd
e9c0734
2a215c2
b73b7f6
e9c0734
 
 
 
 
0d21acd
e9c0734
2a215c2
b73b7f6
e9c0734
 
0d21acd
 
 
 
 
2a215c2
b73b7f6
0d21acd
 
 
e9c0734
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"use client"
import { Scissors, Sparkles, Mic, Smile, Tags, Type } from 'lucide-react';
import type { Category } from '../types/categories';
import SegmentationIcon from './icons/SegmentationIcon';
import TranscriptionIcon from './icons/TranscriptionIcon';
import SentimentAnalysisIcon from './icons/SentimentAnalysisIcon';
import EmbeddingIcon from './icons/EmbeddingIcon';
import ClassificationIcon from './icons/ClassificationIcon';
import TextGenerationIcon from './icons/TextGenerationIcon';

export const categories: Category[] = [
  {
    title: "Generate Text",
    slug: "generate-text",
    icon: Type,
    description: "Llama. Qwen. Enough said.",
    status: "Available",
    colorName: "blue",
    graphic: TextGenerationIcon
  },
  {
    title: "Transcribe",
    slug: "transcribe",
    icon: Mic,
    description: "AI that hears all and forgets nothing (except the 'uhms').",
    status: "Available",
    colorName: "rose",
    graphic: TranscriptionIcon
  },
  {
    title: "Segment",
    slug: "segment",
    icon: Scissors,
    description: "Slice and dice images with precision. Carve out objects and backgrounds like a digital sculptor.",
    status: "Available",
    colorName: "indigo",
    graphic: SegmentationIcon
  },
  {
    title: "Embed",
    slug: "embed",
    icon: Sparkles,
    description: "Transform words and pixels into mathematical magic.",
    status: "Available",
    colorName: "teal",
    graphic: EmbeddingIcon
  },
  {
    title: "Sentiment",
    slug: "sentiment",
    icon: Smile,
    description: "Read between the lines. From πŸ€— to 😠, we've got feelings figured out.",
    status: "Available",
    colorName: "amber",
    graphic: SentimentAnalysisIcon
  },
  {
    title: "Classify",
    slug: "classify",
    icon: Tags,
    description: "Sort the digital chaos.",
    status: "Available",
    colorName: "purple",
    graphic: ClassificationIcon
  },
];