(youModel string)
| 98 | } |
| 99 | |
| 100 | func reverseMapModelName(youModel string) string { |
| 101 | reverseMap := getReverseModelMap() |
| 102 | if mappedModel, exists := reverseMap[youModel]; exists { |
| 103 | return mappedModel |
| 104 | } |
| 105 | return "deepseek-chat" |
| 106 | } |
| 107 | |
| 108 | var originalModel string |
| 109 |
no test coverage detected