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 | |
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 | |