File size: 239 Bytes
076da4c
 
 
 
65843fa
076da4c
1
2
3
4
5
6
7
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