Remove GetBackendSettings method from config

This commit is contained in:
2025-10-19 18:32:05 +02:00
parent 3500971f03
commit 867380a06d
2 changed files with 21 additions and 21 deletions

View File

@@ -601,17 +601,3 @@ func getDefaultConfigLocations() []string {
return locations
}
// GetBackendSettings resolves backend settings
func (bc *BackendConfig) GetBackendSettings(backendType string) BackendSettings {
switch backendType {
case "llama-cpp":
return bc.LlamaCpp
case "vllm":
return bc.VLLM
case "mlx":
return bc.MLX
default:
return BackendSettings{}
}
}