mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
|
|
export const EMBEDDING_CONSTANTS = {
|
||
|
|
exactTitleMatch: 0.3,
|
||
|
|
titleContainsQuery: 0.2,
|
||
|
|
partialTitleMatch: 0.1,
|
||
|
|
sameType: 0.05,
|
||
|
|
attributeMatch: 0.05,
|
||
|
|
recentlyCreated: 0.05,
|
||
|
|
recentlyModified: 0.05
|
||
|
|
};
|