{/* Left column: Model selection */}
Selected Model
{selectedModelInfo.icon}
{selectedModelInfo.name}
Embedding Model
{embeddingProviderIcon}
{displayEmbeddingModel}
Select Triple Extraction Model
{/* Right column: Document Processing */}
)
}
// Create a wrapper component that uses the document context
function ProcessingSummary() {
const { documents } = useDocuments()
// Count documents with "New" status that are ready for processing
const docsReadyCount = documents.filter(doc => doc.status === "New").length
return (