1. Recherche: fetchChunkSnippets() — après le classement RRF existant, récupère les passages précis qui matchent depuis NoteEmbeddingChunk. Pur affichage, AUCUN changement de classement. 2. Script migration: scripts/migrate-chunk-embeddings.ts Indexe toutes les notes existantes en fragments. Batch de 10, barre de progression. Usage: npx tsx scripts/migrate-chunk-embeddings.ts 3. Memory Echo chunk-level: à faire (US restante)
21 lines
437 B
JavaScript
21 lines
437 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./app/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: '#A47148',
|
|
ink: '#1A1A18',
|
|
paper: '#FAFAF8',
|
|
concrete: '#8A8A82',
|
|
border: '#E8E6E0',
|
|
},
|
|
fontFamily: {
|
|
sans: ['System'],
|
|
serif: ['Georgia'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|