(openAIModel string)
| 91 | } |
| 92 | |
| 93 | func mapModelName(openAIModel string) string { |
| 94 | if mappedModel, exists := modelMap[openAIModel]; exists { |
| 95 | return mappedModel |
| 96 | } |
| 97 | return "deepseek_v3" |
| 98 | } |
| 99 | |
| 100 | func reverseMapModelName(youModel string) string { |
| 101 | reverseMap := getReverseModelMap() |
no outgoing calls
no test coverage detected