File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,15 +39,15 @@ type MultiLangAST struct{ parsers map[string]interface{} }
3939
4040func NewMultiLangAST () * MultiLangAST { return & MultiLangAST {parsers : make (map [string ]interface {})} }
4141
42- type EmbeddingContrastive struct { model interface {} }
42+ type EmbeddingContrastive struct {} //nolint:unused // placeholder for future model integration
4343
4444func NewEmbeddingContrastive () * EmbeddingContrastive { return & EmbeddingContrastive {} }
4545
4646type VariableNGram struct { minN , maxN int }
4747
4848func NewVariableNGram (min , max int ) * VariableNGram { return & VariableNGram {minN : min , maxN : max } }
4949
50- type TrainedEvaluatorHeads struct { model interface {} }
50+ type TrainedEvaluatorHeads struct {} //nolint:unused // placeholder for future model integration
5151
5252func NewTrainedEvaluatorHeads () * TrainedEvaluatorHeads { return & TrainedEvaluatorHeads {} }
5353
@@ -65,7 +65,7 @@ type SoftBudget struct{ limit, overflow int }
6565
6666func NewSoftBudget (l , o int ) * SoftBudget { return & SoftBudget {limit : l , overflow : o } }
6767
68- type EmbeddingCompaction struct { transformer interface {} }
68+ type EmbeddingCompaction struct {} //nolint:unused // placeholder for future transformer integration
6969
7070func NewEmbeddingCompaction () * EmbeddingCompaction { return & EmbeddingCompaction {} }
7171
You can’t perform that action at this time.
0 commit comments