We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3794362 commit e4ba820Copy full SHA for e4ba820
1 file changed
app/modules/ai_intelligence/services/ai_recommendation_service.rb
@@ -83,7 +83,16 @@ def legacy_fallback
83
{
84
source: 'legacy',
85
model_version: nil,
86
- recommendations: suggestions.map { |champ| { champion: champ, score: nil } }
+ recommendations: suggestions.map do |champ|
87
+ {
88
+ champion: champ,
89
+ score: nil,
90
+ win_probability: nil,
91
+ synergy_score: nil,
92
+ counter_score: nil,
93
+ reasoning_tokens: []
94
+ }
95
+ end
96
}
97
end
98
0 commit comments