()
| 176 | } |
| 177 | |
| 178 | export function getEmbeddingBatchSize(): number { |
| 179 | const requested = toIntegerOr(process.env.CONTEXTPLUS_EMBED_BATCH_SIZE, DEFAULT_EMBED_BATCH_SIZE); |
| 180 | return Math.min(MAX_EMBED_BATCH_SIZE, Math.max(MIN_EMBED_BATCH_SIZE, requested)); |
| 181 | } |
| 182 | |
| 183 | export function getEmbedChunkChars(): number { |
| 184 | const requested = toIntegerOr(process.env.CONTEXTPLUS_EMBED_CHUNK_CHARS, DEFAULT_EMBED_CHUNK_CHARS); |
no test coverage detected