lila/data-pipeline/config/constants.ts
2026-07-06 14:41:30 +02:00

16 lines
333 B
TypeScript

export const LANG_MAP: Record<string, string> = {
english: "en",
italian: "it",
german: "de",
french: "fr",
spanish: "es",
};
export const POS_MAP: Record<string, string> = {
nouns: "noun",
verbs: "verb",
adverbs: "adverb",
adjectives: "adjective",
};
export const ALL_LANGUAGES = ["en", "de", "it", "es", "fr"];