(provider string)
| 1390 | } |
| 1391 | |
| 1392 | func requiresInitialAgentAccountModels(provider string) bool { |
| 1393 | switch provider { |
| 1394 | case "custom", "vllm", "ollama": |
| 1395 | return true |
| 1396 | default: |
| 1397 | return false |
| 1398 | } |
| 1399 | } |
| 1400 | |
| 1401 | func normalizeComparableProviderModelID(provider, modelID string) string { |
| 1402 | target := strings.TrimSpace(modelID) |
no outgoing calls
no test coverage detected