bugfixing #1
This commit is contained in:
parent
afd28d934e
commit
2a6c56ed23
12 changed files with 300 additions and 269 deletions
|
|
@ -1,3 +1 @@
|
|||
export const BATCH_CONFIG = { size: 4, maxRetries: 3 } as const;
|
||||
|
||||
//1, 2, 5, 10, 20
|
||||
|
|
|
|||
14
data-pipeline/config/constants.ts
Normal file
14
data-pipeline/config/constants.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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",
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue