noahsettersten's picture
feat: Highlight weighted feedback
65843fa
raw
history blame
239 Bytes
defmodule MedicalTranscription.Coding.CodeVectorMatch do
@moduledoc """
Represents a vector match found in the database, along with its similarity score.
"""
defstruct [:id, :code, :description, :cosine_similarity, :weighting]
end