mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
ada6f15c93
Signed-off-by: Alexander Bezzubov <bzz@apache.org>
8 lines
313 B
Go
8 lines
313 B
Go
// Package tokenizer implements file tokenization used by the enry content
|
|
// classifier. This package is an implementation detail of enry and should not
|
|
// be imported by other packages.
|
|
package tokenizer
|
|
|
|
// ByteLimit defines the maximum prefix of an input text that will be tokenized.
|
|
const ByteLimit = 100000
|