@ai2070/l0
Version:
L0: The Missing Reliability Substrate for AI
39 lines (38 loc) • 608 B
JavaScript
const smallWindow = {
name: "small",
size: 1e3,
overlap: 100,
strategy: "token"
};
const mediumWindow = {
name: "medium",
size: 2e3,
overlap: 200,
strategy: "token"
};
const largeWindow = {
name: "large",
size: 4e3,
overlap: 400,
strategy: "token"
};
const paragraphWindow = {
name: "paragraph",
size: 2e3,
overlap: 200,
strategy: "paragraph"
};
const sentenceWindow = {
name: "sentence",
size: 1500,
overlap: 150,
strategy: "sentence"
};
export {
largeWindow,
mediumWindow,
paragraphWindow,
sentenceWindow,
smallWindow
};
//# sourceMappingURL=window.js.map