-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from ZHANGWENTAI/service-version
llm service version crd definition, frontend and backend
- Loading branch information
Showing
19 changed files
with
6,576 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package v1alpha1 | ||
|
||
import ( | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
// LLMServiceVersionSpec defines the desired state of LLMServiceVersion | ||
type LLMServiceVersionSpec struct { | ||
// Version number of the LLM service | ||
Version string `json:"version"` | ||
|
||
// ModelName is the name of the LLM model | ||
ModelName string `json:"modelName"` | ||
|
||
// CreationTime is the time when this version was created | ||
CreationTime string `json:"creationTime"` | ||
|
||
// AssociatedExperimentSpec is the spec of the associated experiment | ||
AssociatedExperimentSpec ProfilingExperimentSpec `json:"associatedExperimentSpec"` | ||
} | ||
|
||
// LLMServiceVersionStatus defines the observed state of LLMServiceVersion | ||
type LLMServiceVersionStatus struct { | ||
// TestCompletionTime is the time when testing for this version was completed | ||
TestCompletionTime metav1.Time `json:"testCompletionTime,omitempty"` | ||
|
||
// AssociatedExperimentStatus is the status of the associated experiment | ||
AssociatedExperimentStatus ProfilingExperimentStatus `json:"associatedExperimentStatus"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
//+kubebuilder:subresource:status | ||
|
||
// LLMServiceVersion is the Schema for the llmserviceversions API | ||
type LLMServiceVersion struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
Spec LLMServiceVersionSpec `json:"spec,omitempty"` | ||
Status LLMServiceVersionStatus `json:"status,omitempty"` | ||
} | ||
|
||
//+kubebuilder:object:root=true | ||
// LLMServiceVersionList contains a list of LLMServiceVersion | ||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
type LLMServiceVersionList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata,omitempty"` | ||
Items []LLMServiceVersion `json:"items"` | ||
} | ||
|
||
func init() { | ||
SchemeBuilder.Register(&LLMServiceVersion{}, &LLMServiceVersionList{}) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.