(maxTokens)
| 66 | }); |
| 67 | } |
| 68 | getSectionOptions(maxTokens) { |
| 69 | if (maxTokens < 2000) { |
| 70 | return { sections: 1, tokens: maxTokens }; |
| 71 | } |
| 72 | else if (maxTokens <= 6000) { |
| 73 | return { sections: 1, tokens: 2000 }; |
| 74 | } |
| 75 | else { |
| 76 | return { sections: 2, tokens: 2000 }; |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | exports.SourceCodeSection = SourceCodeSection; |
| 81 | //# sourceMappingURL=SourceCodeSection.js.map |