All files / src consts.ts

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16      3x                     3x  
/**
 * Default base URL for StackOne API
 */
export const DEFAULT_BASE_URL = 'https://api.stackone.com';
 
/**
 * Default weight for BM25 in hybrid BM25 + TF-IDF search.
 *
 * - alpha=0.2 means: 20% BM25 + 80% TF-IDF
 * - This value was optimised through validation testing
 * - Provides 10.8% improvement in tool discovery accuracy
 * - Lower values favour BM25 scoring (better keyword matching)
 * - Higher values favour TF-IDF scoring (better semantic matching)
 */
export const DEFAULT_HYBRID_ALPHA = 0.2;