Spaces:
Sleeping
Sleeping
File size: 7,051 Bytes
cdc50ff ce30646 cdc50ff be647a4 cdc50ff ce30646 be647a4 ce30646 be647a4 ce30646 be647a4 ce30646 be647a4 ce30646 be647a4 cdc50ff be647a4 cdc50ff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
import { Router } from 'express';
import { getArticleMetadata, getArticleHtml } from '../services/wikipedia.js';
import { chunkArticle } from '../services/chunker.js';
import { embedTexts, embedSingle } from '../services/embedder.js';
import { search } from '../services/vectorSearch.js';
import { getCached, setCache, isCacheValid } from '../services/cache.js';
import { getProcessingState, setProcessing } from '../services/processingState.js';
import { generateQuestionsWithClaude, isClaudeAvailable } from '../services/claudeQuestionGenerator.js';
const router = Router();
/**
* GET /api/article/:title
* Fetch article content; initiates embedding pipeline if not cached
*/
router.get( '/:title', async ( req, res ) => {
try {
const title = decodeURIComponent( req.params.title );
// Get current revision from Wikipedia
const metadata = await getArticleMetadata( title );
if ( !metadata ) {
return res.status( 404 ).json( { error: 'Article not found' } );
}
// Check cache validity
const cacheValid = await isCacheValid( title, metadata.revisionId );
if ( cacheValid ) {
const cached = await getCached( title );
return res.json( {
title: cached.title,
revisionId: cached.revisionId,
html: cached.html,
status: 'ready',
chunkCount: cached.chunks.length,
suggestedQuestions: cached.suggestedQuestions || []
} );
}
// Check if already processing
const state = getProcessingState( title );
if ( state.state === 'processing' ) {
return res.json( {
title: metadata.title,
revisionId: metadata.revisionId,
status: 'processing'
} );
}
// Start async processing
setProcessing( title, 'processing' );
// Return immediately with processing status
res.json( {
title: metadata.title,
revisionId: metadata.revisionId,
status: 'processing'
} );
// Process in background
processArticle( title, metadata.revisionId ).catch( ( err ) => {
console.error( `Error processing ${ title }:`, err );
setProcessing( title, 'error', err.message );
} );
} catch ( error ) {
console.error( 'Article fetch error:', error );
res.status( 500 ).json( { error: 'Failed to fetch article' } );
}
} );
/**
* GET /api/article/:title/status
* Poll endpoint for embedding status
*/
router.get( '/:title/status', async ( req, res ) => {
try {
const title = decodeURIComponent( req.params.title );
const cached = await getCached( title );
if ( cached ) {
return res.json( {
title: cached.title,
revisionId: cached.revisionId,
status: 'ready',
chunkCount: cached.chunks.length
} );
}
const state = getProcessingState( title );
if ( state.state === 'error' ) {
return res.json( {
title,
status: 'error',
error: state.error
} );
}
if ( state.state === 'processing' ) {
return res.json( {
title,
status: 'processing'
} );
}
return res.json( {
title,
status: 'unknown'
} );
} catch ( error ) {
console.error( 'Status check error:', error );
res.status( 500 ).json( { error: 'Failed to check status' } );
}
} );
/**
* POST /api/article/:title/query
* Submit a natural language question
*/
router.post( '/:title/query', async ( req, res ) => {
try {
const title = decodeURIComponent( req.params.title );
const { question, topK = 3 } = req.body;
if ( !question ) {
return res.status( 400 ).json( { error: 'Missing question' } );
}
const cached = await getCached( title );
if ( !cached ) {
const state = getProcessingState( title );
if ( state.state === 'processing' ) {
return res.status( 503 ).json( { error: 'Article still processing' } );
}
return res.status( 404 ).json( { error: 'Article not found or not processed' } );
}
// Embed the question
const queryEmbedding = await embedSingle( question );
// Search for relevant chunks
const { results, belowThreshold } = search(
queryEmbedding,
cached.chunks,
Math.min( topK, 10 )
);
res.json( {
question,
articleTitle: cached.title,
results,
belowThreshold
} );
} catch ( error ) {
console.error( 'Query error:', error );
res.status( 500 ).json( { error: 'Query failed' } );
}
} );
/**
* Background processing function
*/
async function processArticle( title, revisionId ) {
console.log( `Processing article: ${ title }` );
// Fetch parsed HTML from Action API
const articleData = await getArticleHtml( title );
if ( !articleData ) {
throw new Error( 'Failed to fetch article HTML' );
}
const { html, sections } = articleData;
// Chunk the article
const chunks = chunkArticle( html, sections );
console.log( `Created ${ chunks.length } chunks for ${ title }` );
if ( chunks.length === 0 ) {
// Still cache it, but with no chunks
await setCache( title, {
title: articleData.title,
normalizedTitle: title.toLowerCase().replace( / /g, '-' ),
revisionId,
fetchedAt: new Date().toISOString(),
html,
chunkCount: 0,
chunks: []
} );
setProcessing( title, 'ready' );
return;
}
// Generate embeddings for all chunks
const texts = chunks.map( ( c ) => c.text );
console.log( `Generating embeddings for ${ texts.length } chunks...` );
const embeddings = await embedTexts( texts );
// Attach embeddings to chunks
chunks.forEach( ( chunk, i ) => {
chunk.embedding = embeddings[ i ];
} );
// Generate suggested questions using Claude
let suggestedQuestions = [];
if ( isClaudeAvailable() ) {
try {
console.log( 'Generating questions with Claude...' );
const rawQuestions = await generateQuestionsWithClaude( chunks, articleData.title, 5 );
console.log( `Claude generated questions:`, rawQuestions );
// Validate questions by checking if they match article content
const validatedQuestions = [];
for ( const question of rawQuestions ) {
const questionEmbedding = await embedSingle( question );
const { results } = search( questionEmbedding, chunks, 1 );
if ( results.length === 0 ) {
console.log( `Question: "${ question }" -> no results` );
continue;
}
const score = results[ 0 ].score;
console.log( `Question: "${ question }" -> score: ${ score.toFixed( 3 ) }` );
// Keep questions that have a good match (score > 0.3)
if ( score > 0.3 ) {
validatedQuestions.push( question );
}
}
suggestedQuestions = validatedQuestions.slice( 0, 5 );
console.log( `Generated ${ suggestedQuestions.length } validated questions` );
} catch ( err ) {
console.warn( 'Question generation failed, continuing without suggestions:', err.message );
}
} else {
console.log( 'ANTHROPIC_API_KEY not set, skipping question generation' );
}
// Save to cache
await setCache( title, {
title: articleData.title,
normalizedTitle: title.toLowerCase().replace( / /g, '-' ),
revisionId,
fetchedAt: new Date().toISOString(),
html,
chunkCount: chunks.length,
chunks,
suggestedQuestions
} );
setProcessing( title, 'ready' );
console.log( `Finished processing: ${ title }` );
}
export default router;
|