From 14b19adc99b9786c238f7968df27bcb86128df8b Mon Sep 17 00:00:00 2001 From: Tomer Figenblat Date: Wed, 8 Jan 2025 17:05:38 -0500 Subject: [PATCH] chore: set nim runtime api call page size to 1000 Signed-off-by: Tomer Figenblat --- internal/controller/utils/nim.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/utils/nim.go b/internal/controller/utils/nim.go index 2c2d1a77..38889409 100644 --- a/internal/controller/utils/nim.go +++ b/internal/controller/utils/nim.go @@ -107,7 +107,7 @@ func init() { // GetAvailableNimRuntimes is used for fetching a list of available NIM custom runtimes func GetAvailableNimRuntimes() ([]NimRuntime, error) { - return getNimRuntimes([]NimRuntime{}, 0, 100) + return getNimRuntimes([]NimRuntime{}, 0, 1000) } // ValidateApiKey is used for validating the given API key by retrieving the token and pulling the given custom runtime