Spaces:
Sleeping
Sleeping
File size: 429 Bytes
ad01d65 | 1 2 3 4 5 6 7 8 9 10 |
-- Update applications table to include semantic match score results
ALTER TABLE applications
ADD COLUMN IF NOT EXISTS semantic_score FLOAT,
ADD COLUMN IF NOT EXISTS score_breakdown JSONB;
-- Add comments for documentation
COMMENT ON COLUMN applications.semantic_score IS 'Overall semantic match score calculated via embeddings';
COMMENT ON COLUMN applications.score_breakdown IS 'Breakdown of entity-wise similarity scores';
|