Skip to content

Commit 28a7aa6

Browse files
Merge pull request #104 from kerthcet/feat/add-scheduler
Change model name to github.com/inftyai/llmaz
2 parents 364f645 + 820f868 commit 28a7aa6

File tree

79 files changed

+227
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+227
-205
lines changed

api/core/v1alpha1/zz_generated.deepcopy.go

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/inference/v1alpha1/playground_types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package v1alpha1
1919
import (
2020
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2121

22-
api "inftyai.com/llmaz/api/core/v1alpha1"
22+
coreapi "github.com/inftyai/llmaz/api/core/v1alpha1"
2323
)
2424

2525
// PlaygroundSpec defines the desired state of Playground
@@ -34,13 +34,13 @@ type PlaygroundSpec struct {
3434
// Note: properties (nodeSelectors, resources, e.g.) of the model flavors
3535
// will be applied to the workload if not exist.
3636
// +optional
37-
ModelClaim *api.ModelClaim `json:"modelClaim,omitempty"`
37+
ModelClaim *coreapi.ModelClaim `json:"modelClaim,omitempty"`
3838
// MultiModelsClaims represents multiple modelClaim, which is useful when different
3939
// sub-workload has different accelerator requirements, like the state-of-the-art
4040
// technology called splitwise, the workload template is shared by both.
4141
// ModelClaim and multiModelsClaims are exclusive configured.
4242
// +optional
43-
MultiModelsClaims []api.MultiModelsClaim `json:"multiModelsClaims,omitempty"`
43+
MultiModelsClaims []coreapi.MultiModelsClaim `json:"multiModelsClaims,omitempty"`
4444
// BackendConfig represents the inference backend configuration
4545
// under the hood, e.g. vLLM, which is the default backend.
4646
// +optional

api/inference/v1alpha1/service_types.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2121
lws "sigs.k8s.io/lws/api/leaderworkerset/v1"
2222

23-
api "inftyai.com/llmaz/api/core/v1alpha1"
23+
coreapi "github.com/inftyai/llmaz/api/core/v1alpha1"
2424
)
2525

2626
// ServiceSpec defines the desired state of Service.
@@ -34,7 +34,7 @@ type ServiceSpec struct {
3434
// Note: properties (nodeSelectors, resources, e.g.) of the model flavors
3535
// will be applied to the workload if not exist.
3636
// +kubebuilder:validation:MinItems=1
37-
MultiModelsClaims []api.MultiModelsClaim `json:"multiModelsClaims,omitempty"`
37+
MultiModelsClaims []coreapi.MultiModelsClaim `json:"multiModelsClaims,omitempty"`
3838
// WorkloadTemplate defines the underlying workload layout and configuration.
3939
// Note: the LWS spec might be twisted with various LWS instances to support
4040
// accelerator fungibility or other cutting-edge researches.

api/inference/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/core/v1alpha1/flavor.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/core/v1alpha1/modelclaim.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/core/v1alpha1/modelhub.go

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/core/v1alpha1/modelsource.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/core/v1alpha1/modelspec.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client-go/applyconfiguration/core/v1alpha1/modelstatus.go

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)