v1

package
v0.89.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 22, 2024 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Overview

Package v1 is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package v1 is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	FineTuningService_CreateJob_FullMethodName = "/llmoperator.fine_tuning.server.v1.FineTuningService/CreateJob"
	FineTuningService_ListJobs_FullMethodName  = "/llmoperator.fine_tuning.server.v1.FineTuningService/ListJobs"
	FineTuningService_GetJob_FullMethodName    = "/llmoperator.fine_tuning.server.v1.FineTuningService/GetJob"
	FineTuningService_CancelJob_FullMethodName = "/llmoperator.fine_tuning.server.v1.FineTuningService/CancelJob"
)
View Source
const (
	WorkspaceService_CreateNotebook_FullMethodName = "/llmoperator.workspace.server.v1.WorkspaceService/CreateNotebook"
	WorkspaceService_ListNotebooks_FullMethodName  = "/llmoperator.workspace.server.v1.WorkspaceService/ListNotebooks"
	WorkspaceService_GetNotebook_FullMethodName    = "/llmoperator.workspace.server.v1.WorkspaceService/GetNotebook"
	WorkspaceService_DeleteNotebook_FullMethodName = "/llmoperator.workspace.server.v1.WorkspaceService/DeleteNotebook"
	WorkspaceService_StopNotebook_FullMethodName   = "/llmoperator.workspace.server.v1.WorkspaceService/StopNotebook"
	WorkspaceService_StartNotebook_FullMethodName  = "/llmoperator.workspace.server.v1.WorkspaceService/StartNotebook"
)

Variables

View Source
var File_api_v1_job_manager_service_proto protoreflect.FileDescriptor
View Source
var File_api_v1_workspace_service_proto protoreflect.FileDescriptor
View Source
var FineTuningService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "llmoperator.fine_tuning.server.v1.FineTuningService",
	HandlerType: (*FineTuningServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateJob",
			Handler:    _FineTuningService_CreateJob_Handler,
		},
		{
			MethodName: "ListJobs",
			Handler:    _FineTuningService_ListJobs_Handler,
		},
		{
			MethodName: "GetJob",
			Handler:    _FineTuningService_GetJob_Handler,
		},
		{
			MethodName: "CancelJob",
			Handler:    _FineTuningService_CancelJob_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/v1/job_manager_service.proto",
}

FineTuningService_ServiceDesc is the grpc.ServiceDesc for FineTuningService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var WorkspaceService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "llmoperator.workspace.server.v1.WorkspaceService",
	HandlerType: (*WorkspaceServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateNotebook",
			Handler:    _WorkspaceService_CreateNotebook_Handler,
		},
		{
			MethodName: "ListNotebooks",
			Handler:    _WorkspaceService_ListNotebooks_Handler,
		},
		{
			MethodName: "GetNotebook",
			Handler:    _WorkspaceService_GetNotebook_Handler,
		},
		{
			MethodName: "DeleteNotebook",
			Handler:    _WorkspaceService_DeleteNotebook_Handler,
		},
		{
			MethodName: "StopNotebook",
			Handler:    _WorkspaceService_StopNotebook_Handler,
		},
		{
			MethodName: "StartNotebook",
			Handler:    _WorkspaceService_StartNotebook_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/v1/workspace_service.proto",
}

WorkspaceService_ServiceDesc is the grpc.ServiceDesc for WorkspaceService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterFineTuningServiceHandler

func RegisterFineTuningServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterFineTuningServiceHandler registers the http handlers for service FineTuningService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterFineTuningServiceHandlerClient

func RegisterFineTuningServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client FineTuningServiceClient) error

RegisterFineTuningServiceHandlerClient registers the http handlers for service FineTuningService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "FineTuningServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "FineTuningServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "FineTuningServiceClient" to call the correct interceptors.

func RegisterFineTuningServiceHandlerFromEndpoint

func RegisterFineTuningServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterFineTuningServiceHandlerFromEndpoint is same as RegisterFineTuningServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterFineTuningServiceHandlerServer

func RegisterFineTuningServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server FineTuningServiceServer) error

RegisterFineTuningServiceHandlerServer registers the http handlers for service FineTuningService to "mux". UnaryRPC :call FineTuningServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterFineTuningServiceHandlerFromEndpoint instead.

func RegisterFineTuningServiceServer

func RegisterFineTuningServiceServer(s grpc.ServiceRegistrar, srv FineTuningServiceServer)

func RegisterWorkspaceServiceHandler added in v0.86.0

func RegisterWorkspaceServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterWorkspaceServiceHandler registers the http handlers for service WorkspaceService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterWorkspaceServiceHandlerClient added in v0.86.0

func RegisterWorkspaceServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client WorkspaceServiceClient) error

RegisterWorkspaceServiceHandlerClient registers the http handlers for service WorkspaceService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "WorkspaceServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "WorkspaceServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "WorkspaceServiceClient" to call the correct interceptors.

func RegisterWorkspaceServiceHandlerFromEndpoint added in v0.86.0

func RegisterWorkspaceServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterWorkspaceServiceHandlerFromEndpoint is same as RegisterWorkspaceServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterWorkspaceServiceHandlerServer added in v0.86.0

func RegisterWorkspaceServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server WorkspaceServiceServer) error

RegisterWorkspaceServiceHandlerServer registers the http handlers for service WorkspaceService to "mux". UnaryRPC :call WorkspaceServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterWorkspaceServiceHandlerFromEndpoint instead.

func RegisterWorkspaceServiceServer added in v0.86.0

func RegisterWorkspaceServiceServer(s grpc.ServiceRegistrar, srv WorkspaceServiceServer)

Types

type CancelJobRequest

type CancelJobRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelJobRequest) Descriptor deprecated

func (*CancelJobRequest) Descriptor() ([]byte, []int)

Deprecated: Use CancelJobRequest.ProtoReflect.Descriptor instead.

func (*CancelJobRequest) GetId

func (x *CancelJobRequest) GetId() string

func (*CancelJobRequest) ProtoMessage

func (*CancelJobRequest) ProtoMessage()

func (*CancelJobRequest) ProtoReflect

func (x *CancelJobRequest) ProtoReflect() protoreflect.Message

func (*CancelJobRequest) Reset

func (x *CancelJobRequest) Reset()

func (*CancelJobRequest) String

func (x *CancelJobRequest) String() string

type CreateJobRequest

type CreateJobRequest struct {
	Model           string                            `protobuf:"bytes,1,opt,name=model,proto3" json:"model,omitempty"`
	TrainingFile    string                            `protobuf:"bytes,2,opt,name=training_file,json=trainingFile,proto3" json:"training_file,omitempty"`
	Hyperparameters *CreateJobRequest_Hyperparameters `protobuf:"bytes,3,opt,name=hyperparameters,proto3" json:"hyperparameters,omitempty"`
	// A string of up to 18 characters that will be added to your fine-tuned model name.
	//
	// For example, a suffix of "custom-model-name" would produce a
	// model name like
	// ft:gpt-3.5-turbo:openai:custom-model-name:7p4lURel.
	Suffix         string `protobuf:"bytes,4,opt,name=suffix,proto3" json:"suffix,omitempty"`
	ValidationFile string `protobuf:"bytes,5,opt,name=validation_file,json=validationFile,proto3" json:"validation_file,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateJobRequest) Descriptor deprecated

func (*CreateJobRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateJobRequest.ProtoReflect.Descriptor instead.

func (*CreateJobRequest) GetHyperparameters

func (x *CreateJobRequest) GetHyperparameters() *CreateJobRequest_Hyperparameters

func (*CreateJobRequest) GetModel

func (x *CreateJobRequest) GetModel() string

func (*CreateJobRequest) GetSuffix

func (x *CreateJobRequest) GetSuffix() string

func (*CreateJobRequest) GetTrainingFile

func (x *CreateJobRequest) GetTrainingFile() string

func (*CreateJobRequest) GetValidationFile

func (x *CreateJobRequest) GetValidationFile() string

func (*CreateJobRequest) ProtoMessage

func (*CreateJobRequest) ProtoMessage()

func (*CreateJobRequest) ProtoReflect

func (x *CreateJobRequest) ProtoReflect() protoreflect.Message

func (*CreateJobRequest) Reset

func (x *CreateJobRequest) Reset()

func (*CreateJobRequest) String

func (x *CreateJobRequest) String() string

type CreateJobRequest_Hyperparameters added in v0.59.0

type CreateJobRequest_Hyperparameters struct {

	// Note: OpenAI API supports string or interger.
	BatchSize int32 `protobuf:"varint,1,opt,name=batch_size,json=batchSize,proto3" json:"batch_size,omitempty"`
	// Note: OpenAI API supports string or number.
	LearningRateMultiplier float64 `` /* 131-byte string literal not displayed */
	// Note: OpenAI API supports string or interger.
	NEpochs int32 `protobuf:"varint,3,opt,name=n_epochs,json=nEpochs,proto3" json:"n_epochs,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateJobRequest_Hyperparameters) Descriptor deprecated added in v0.59.0

func (*CreateJobRequest_Hyperparameters) Descriptor() ([]byte, []int)

Deprecated: Use CreateJobRequest_Hyperparameters.ProtoReflect.Descriptor instead.

func (*CreateJobRequest_Hyperparameters) GetBatchSize added in v0.59.0

func (x *CreateJobRequest_Hyperparameters) GetBatchSize() int32

func (*CreateJobRequest_Hyperparameters) GetLearningRateMultiplier added in v0.59.0

func (x *CreateJobRequest_Hyperparameters) GetLearningRateMultiplier() float64

func (*CreateJobRequest_Hyperparameters) GetNEpochs added in v0.59.0

func (x *CreateJobRequest_Hyperparameters) GetNEpochs() int32

func (*CreateJobRequest_Hyperparameters) ProtoMessage added in v0.59.0

func (*CreateJobRequest_Hyperparameters) ProtoMessage()

func (*CreateJobRequest_Hyperparameters) ProtoReflect added in v0.59.0

func (*CreateJobRequest_Hyperparameters) Reset added in v0.59.0

func (*CreateJobRequest_Hyperparameters) String added in v0.59.0

type CreateNotebookRequest added in v0.86.0

type CreateNotebookRequest struct {
	Name      string                       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Image     *CreateNotebookRequest_Image `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
	Resources *Resources                   `protobuf:"bytes,3,opt,name=resources,proto3" json:"resources,omitempty"`
	Envs      map[string]string            `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateNotebookRequest) Descriptor deprecated added in v0.86.0

func (*CreateNotebookRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateNotebookRequest.ProtoReflect.Descriptor instead.

func (*CreateNotebookRequest) GetEnvs added in v0.86.0

func (x *CreateNotebookRequest) GetEnvs() map[string]string

func (*CreateNotebookRequest) GetImage added in v0.86.0

func (*CreateNotebookRequest) GetName added in v0.86.0

func (x *CreateNotebookRequest) GetName() string

func (*CreateNotebookRequest) GetResources added in v0.86.0

func (x *CreateNotebookRequest) GetResources() *Resources

func (*CreateNotebookRequest) ProtoMessage added in v0.86.0

func (*CreateNotebookRequest) ProtoMessage()

func (*CreateNotebookRequest) ProtoReflect added in v0.86.0

func (x *CreateNotebookRequest) ProtoReflect() protoreflect.Message

func (*CreateNotebookRequest) Reset added in v0.86.0

func (x *CreateNotebookRequest) Reset()

func (*CreateNotebookRequest) String added in v0.86.0

func (x *CreateNotebookRequest) String() string

type CreateNotebookRequest_Image added in v0.86.0

type CreateNotebookRequest_Image struct {

	// Types that are assignable to Image:
	//
	//	*CreateNotebookRequest_Image_Type
	//	*CreateNotebookRequest_Image_Uri
	Image isCreateNotebookRequest_Image_Image `protobuf_oneof:"image"`
	// contains filtered or unexported fields
}

func (*CreateNotebookRequest_Image) Descriptor deprecated added in v0.86.0

func (*CreateNotebookRequest_Image) Descriptor() ([]byte, []int)

Deprecated: Use CreateNotebookRequest_Image.ProtoReflect.Descriptor instead.

func (*CreateNotebookRequest_Image) GetImage added in v0.86.0

func (m *CreateNotebookRequest_Image) GetImage() isCreateNotebookRequest_Image_Image

func (*CreateNotebookRequest_Image) GetType added in v0.86.0

func (x *CreateNotebookRequest_Image) GetType() string

func (*CreateNotebookRequest_Image) GetUri added in v0.86.0

func (x *CreateNotebookRequest_Image) GetUri() string

func (*CreateNotebookRequest_Image) ProtoMessage added in v0.86.0

func (*CreateNotebookRequest_Image) ProtoMessage()

func (*CreateNotebookRequest_Image) ProtoReflect added in v0.86.0

func (*CreateNotebookRequest_Image) Reset added in v0.86.0

func (x *CreateNotebookRequest_Image) Reset()

func (*CreateNotebookRequest_Image) String added in v0.86.0

func (x *CreateNotebookRequest_Image) String() string

type CreateNotebookRequest_Image_Type added in v0.86.0

type CreateNotebookRequest_Image_Type struct {
	// Type of preset images.
	Type string `protobuf:"bytes,1,opt,name=type,proto3,oneof"`
}

type CreateNotebookRequest_Image_Uri added in v0.86.0

type CreateNotebookRequest_Image_Uri struct {
	// URI to the custom container image.
	Uri string `protobuf:"bytes,2,opt,name=uri,proto3,oneof"`
}

type DeleteNotebookRequest added in v0.86.0

type DeleteNotebookRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteNotebookRequest) Descriptor deprecated added in v0.86.0

func (*DeleteNotebookRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteNotebookRequest.ProtoReflect.Descriptor instead.

func (*DeleteNotebookRequest) GetId added in v0.86.0

func (x *DeleteNotebookRequest) GetId() string

func (*DeleteNotebookRequest) ProtoMessage added in v0.86.0

func (*DeleteNotebookRequest) ProtoMessage()

func (*DeleteNotebookRequest) ProtoReflect added in v0.86.0

func (x *DeleteNotebookRequest) ProtoReflect() protoreflect.Message

func (*DeleteNotebookRequest) Reset added in v0.86.0

func (x *DeleteNotebookRequest) Reset()

func (*DeleteNotebookRequest) String added in v0.86.0

func (x *DeleteNotebookRequest) String() string

type DeleteNotebookResponse added in v0.86.0

type DeleteNotebookResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteNotebookResponse) Descriptor deprecated added in v0.86.0

func (*DeleteNotebookResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteNotebookResponse.ProtoReflect.Descriptor instead.

func (*DeleteNotebookResponse) ProtoMessage added in v0.86.0

func (*DeleteNotebookResponse) ProtoMessage()

func (*DeleteNotebookResponse) ProtoReflect added in v0.86.0

func (x *DeleteNotebookResponse) ProtoReflect() protoreflect.Message

func (*DeleteNotebookResponse) Reset added in v0.86.0

func (x *DeleteNotebookResponse) Reset()

func (*DeleteNotebookResponse) String added in v0.86.0

func (x *DeleteNotebookResponse) String() string

type FineTuningServiceClient

type FineTuningServiceClient interface {
	CreateJob(ctx context.Context, in *CreateJobRequest, opts ...grpc.CallOption) (*Job, error)
	ListJobs(ctx context.Context, in *ListJobsRequest, opts ...grpc.CallOption) (*ListJobsResponse, error)
	GetJob(ctx context.Context, in *GetJobRequest, opts ...grpc.CallOption) (*Job, error)
	CancelJob(ctx context.Context, in *CancelJobRequest, opts ...grpc.CallOption) (*Job, error)
}

FineTuningServiceClient is the client API for FineTuningService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type FineTuningServiceServer

type FineTuningServiceServer interface {
	CreateJob(context.Context, *CreateJobRequest) (*Job, error)
	ListJobs(context.Context, *ListJobsRequest) (*ListJobsResponse, error)
	GetJob(context.Context, *GetJobRequest) (*Job, error)
	CancelJob(context.Context, *CancelJobRequest) (*Job, error)
	// contains filtered or unexported methods
}

FineTuningServiceServer is the server API for FineTuningService service. All implementations must embed UnimplementedFineTuningServiceServer for forward compatibility

type GetJobRequest added in v0.76.0

type GetJobRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetJobRequest) Descriptor deprecated added in v0.76.0

func (*GetJobRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetJobRequest.ProtoReflect.Descriptor instead.

func (*GetJobRequest) GetId added in v0.76.0

func (x *GetJobRequest) GetId() string

func (*GetJobRequest) ProtoMessage added in v0.76.0

func (*GetJobRequest) ProtoMessage()

func (*GetJobRequest) ProtoReflect added in v0.76.0

func (x *GetJobRequest) ProtoReflect() protoreflect.Message

func (*GetJobRequest) Reset added in v0.76.0

func (x *GetJobRequest) Reset()

func (*GetJobRequest) String added in v0.76.0

func (x *GetJobRequest) String() string

type GetNotebookRequest added in v0.86.0

type GetNotebookRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNotebookRequest) Descriptor deprecated added in v0.86.0

func (*GetNotebookRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetNotebookRequest.ProtoReflect.Descriptor instead.

func (*GetNotebookRequest) GetId added in v0.86.0

func (x *GetNotebookRequest) GetId() string

func (*GetNotebookRequest) ProtoMessage added in v0.86.0

func (*GetNotebookRequest) ProtoMessage()

func (*GetNotebookRequest) ProtoReflect added in v0.86.0

func (x *GetNotebookRequest) ProtoReflect() protoreflect.Message

func (*GetNotebookRequest) Reset added in v0.86.0

func (x *GetNotebookRequest) Reset()

func (*GetNotebookRequest) String added in v0.86.0

func (x *GetNotebookRequest) String() string

type Job

type Job struct {
	Id        string     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt int64      `protobuf:"varint,2,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	Error     *Job_Error `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.
	FineTunedModel  string               `protobuf:"bytes,4,opt,name=fine_tuned_model,json=fineTunedModel,proto3" json:"fine_tuned_model,omitempty"`
	FinishedAt      int64                `protobuf:"varint,5,opt,name=finished_at,json=finishedAt,proto3" json:"finished_at,omitempty"`
	Hyperparameters *Job_Hyperparameters `protobuf:"bytes,6,opt,name=hyperparameters,proto3" json:"hyperparameters,omitempty"`
	// The base model that is being fine-tuned.
	Model          string   `protobuf:"bytes,7,opt,name=model,proto3" json:"model,omitempty"`
	Object         string   `protobuf:"bytes,8,opt,name=object,proto3" json:"object,omitempty"`
	OrganizationId string   `protobuf:"bytes,9,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	ResultFiles    []string `protobuf:"bytes,10,rep,name=result_files,json=resultFiles,proto3" json:"result_files,omitempty"`
	// The current status of the fine-tuning job, which can be either validating_files, queued, running, succeeded, failed, or cancelled.
	Status         string `protobuf:"bytes,11,opt,name=status,proto3" json:"status,omitempty"`
	TrainedTokens  int32  `protobuf:"varint,12,opt,name=trained_tokens,json=trainedTokens,proto3" json:"trained_tokens,omitempty"`
	TrainingFile   string `protobuf:"bytes,13,opt,name=training_file,json=trainingFile,proto3" json:"training_file,omitempty"`
	ValidationFile string `protobuf:"bytes,14,opt,name=validation_file,json=validationFile,proto3" json:"validation_file,omitempty"`
	// contains filtered or unexported fields
}

func (*Job) Descriptor deprecated

func (*Job) Descriptor() ([]byte, []int)

Deprecated: Use Job.ProtoReflect.Descriptor instead.

func (*Job) GetCreatedAt

func (x *Job) GetCreatedAt() int64

func (*Job) GetError

func (x *Job) GetError() *Job_Error

func (*Job) GetFineTunedModel

func (x *Job) GetFineTunedModel() string

func (*Job) GetFinishedAt

func (x *Job) GetFinishedAt() int64

func (*Job) GetHyperparameters

func (x *Job) GetHyperparameters() *Job_Hyperparameters

func (*Job) GetId

func (x *Job) GetId() string

func (*Job) GetModel

func (x *Job) GetModel() string

func (*Job) GetObject

func (x *Job) GetObject() string

func (*Job) GetOrganizationId

func (x *Job) GetOrganizationId() string

func (*Job) GetResultFiles

func (x *Job) GetResultFiles() []string

func (*Job) GetStatus

func (x *Job) GetStatus() string

func (*Job) GetTrainedTokens

func (x *Job) GetTrainedTokens() int32

func (*Job) GetTrainingFile

func (x *Job) GetTrainingFile() string

func (*Job) GetValidationFile

func (x *Job) GetValidationFile() string

func (*Job) ProtoMessage

func (*Job) ProtoMessage()

func (*Job) ProtoReflect

func (x *Job) ProtoReflect() protoreflect.Message

func (*Job) Reset

func (x *Job) Reset()

func (*Job) String

func (x *Job) String() string

type Job_Error

type Job_Error struct {
	Code    string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Param   string `protobuf:"bytes,3,opt,name=param,proto3" json:"param,omitempty"`
	// contains filtered or unexported fields
}

func (*Job_Error) Descriptor deprecated

func (*Job_Error) Descriptor() ([]byte, []int)

Deprecated: Use Job_Error.ProtoReflect.Descriptor instead.

func (*Job_Error) GetCode

func (x *Job_Error) GetCode() string

func (*Job_Error) GetMessage

func (x *Job_Error) GetMessage() string

func (*Job_Error) GetParam

func (x *Job_Error) GetParam() string

func (*Job_Error) ProtoMessage

func (*Job_Error) ProtoMessage()

func (*Job_Error) ProtoReflect

func (x *Job_Error) ProtoReflect() protoreflect.Message

func (*Job_Error) Reset

func (x *Job_Error) Reset()

func (*Job_Error) String

func (x *Job_Error) String() string

type Job_Hyperparameters added in v0.59.0

type Job_Hyperparameters struct {

	// Note: OpenAI API supports string or interger.
	BatchSize int32 `protobuf:"varint,1,opt,name=batch_size,json=batchSize,proto3" json:"batch_size,omitempty"`
	// Note: OpenAI API supports string or number.
	LearningRateMultiplier float64 `` /* 131-byte string literal not displayed */
	// Note: OpenAI API supports string or interger.
	NEpochs int32 `protobuf:"varint,3,opt,name=n_epochs,json=nEpochs,proto3" json:"n_epochs,omitempty"`
	// contains filtered or unexported fields
}

func (*Job_Hyperparameters) Descriptor deprecated added in v0.59.0

func (*Job_Hyperparameters) Descriptor() ([]byte, []int)

Deprecated: Use Job_Hyperparameters.ProtoReflect.Descriptor instead.

func (*Job_Hyperparameters) GetBatchSize added in v0.61.0

func (x *Job_Hyperparameters) GetBatchSize() int32

func (*Job_Hyperparameters) GetLearningRateMultiplier added in v0.61.0

func (x *Job_Hyperparameters) GetLearningRateMultiplier() float64

func (*Job_Hyperparameters) GetNEpochs added in v0.59.0

func (x *Job_Hyperparameters) GetNEpochs() int32

func (*Job_Hyperparameters) ProtoMessage added in v0.59.0

func (*Job_Hyperparameters) ProtoMessage()

func (*Job_Hyperparameters) ProtoReflect added in v0.59.0

func (x *Job_Hyperparameters) ProtoReflect() protoreflect.Message

func (*Job_Hyperparameters) Reset added in v0.59.0

func (x *Job_Hyperparameters) Reset()

func (*Job_Hyperparameters) String added in v0.59.0

func (x *Job_Hyperparameters) String() string

type ListJobsRequest

type ListJobsRequest struct {

	// after is the identifier for the last job from the previous pagination request.
	After string `protobuf:"bytes,1,opt,name=after,proto3" json:"after,omitempty"`
	// limit is the number of fine-tuning jobs to retrieve. Defaults to 20.
	Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*ListJobsRequest) Descriptor deprecated

func (*ListJobsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListJobsRequest.ProtoReflect.Descriptor instead.

func (*ListJobsRequest) GetAfter

func (x *ListJobsRequest) GetAfter() string

func (*ListJobsRequest) GetLimit

func (x *ListJobsRequest) GetLimit() int32

func (*ListJobsRequest) ProtoMessage

func (*ListJobsRequest) ProtoMessage()

func (*ListJobsRequest) ProtoReflect

func (x *ListJobsRequest) ProtoReflect() protoreflect.Message

func (*ListJobsRequest) Reset

func (x *ListJobsRequest) Reset()

func (*ListJobsRequest) String

func (x *ListJobsRequest) String() string

type ListJobsResponse

type ListJobsResponse struct {
	Object  string `protobuf:"bytes,1,opt,name=object,proto3" json:"object,omitempty"`
	Data    []*Job `protobuf:"bytes,2,rep,name=data,proto3" json:"data,omitempty"`
	HasMore bool   `protobuf:"varint,3,opt,name=has_more,json=hasMore,proto3" json:"has_more,omitempty"`
	// contains filtered or unexported fields
}

func (*ListJobsResponse) Descriptor deprecated

func (*ListJobsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListJobsResponse.ProtoReflect.Descriptor instead.

func (*ListJobsResponse) GetData

func (x *ListJobsResponse) GetData() []*Job

func (*ListJobsResponse) GetHasMore

func (x *ListJobsResponse) GetHasMore() bool

func (*ListJobsResponse) GetObject

func (x *ListJobsResponse) GetObject() string

func (*ListJobsResponse) ProtoMessage

func (*ListJobsResponse) ProtoMessage()

func (*ListJobsResponse) ProtoReflect

func (x *ListJobsResponse) ProtoReflect() protoreflect.Message

func (*ListJobsResponse) Reset

func (x *ListJobsResponse) Reset()

func (*ListJobsResponse) String

func (x *ListJobsResponse) String() string

type ListNotebooksRequest added in v0.86.0

type ListNotebooksRequest struct {
	// contains filtered or unexported fields
}

func (*ListNotebooksRequest) Descriptor deprecated added in v0.86.0

func (*ListNotebooksRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListNotebooksRequest.ProtoReflect.Descriptor instead.

func (*ListNotebooksRequest) ProtoMessage added in v0.86.0

func (*ListNotebooksRequest) ProtoMessage()

func (*ListNotebooksRequest) ProtoReflect added in v0.86.0

func (x *ListNotebooksRequest) ProtoReflect() protoreflect.Message

func (*ListNotebooksRequest) Reset added in v0.86.0

func (x *ListNotebooksRequest) Reset()

func (*ListNotebooksRequest) String added in v0.86.0

func (x *ListNotebooksRequest) String() string

type ListNotebooksResponse added in v0.86.0

type ListNotebooksResponse struct {
	Notebooks []*Notebook `protobuf:"bytes,1,rep,name=notebooks,proto3" json:"notebooks,omitempty"`
	// contains filtered or unexported fields
}

func (*ListNotebooksResponse) Descriptor deprecated added in v0.86.0

func (*ListNotebooksResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListNotebooksResponse.ProtoReflect.Descriptor instead.

func (*ListNotebooksResponse) GetNotebooks added in v0.86.0

func (x *ListNotebooksResponse) GetNotebooks() []*Notebook

func (*ListNotebooksResponse) ProtoMessage added in v0.86.0

func (*ListNotebooksResponse) ProtoMessage()

func (*ListNotebooksResponse) ProtoReflect added in v0.86.0

func (x *ListNotebooksResponse) ProtoReflect() protoreflect.Message

func (*ListNotebooksResponse) Reset added in v0.86.0

func (x *ListNotebooksResponse) Reset()

func (*ListNotebooksResponse) String added in v0.86.0

func (x *ListNotebooksResponse) String() string

type Notebook added in v0.86.0

type Notebook struct {
	Id        string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name      string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	CreatedAt int64             `protobuf:"varint,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	StartedAt int64             `protobuf:"varint,4,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
	StoppedAt int64             `protobuf:"varint,5,opt,name=stopped_at,json=stoppedAt,proto3" json:"stopped_at,omitempty"`
	Image     string            `protobuf:"bytes,6,opt,name=image,proto3" json:"image,omitempty"`
	Resources *Resources        `protobuf:"bytes,7,opt,name=resources,proto3" json:"resources,omitempty"`
	Envs      map[string]string `` /* 149-byte string literal not displayed */
	Error     *Notebook_Error   `protobuf:"bytes,9,opt,name=error,proto3" json:"error,omitempty"`
	Status    string            `protobuf:"bytes,10,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*Notebook) Descriptor deprecated added in v0.86.0

func (*Notebook) Descriptor() ([]byte, []int)

Deprecated: Use Notebook.ProtoReflect.Descriptor instead.

func (*Notebook) GetCreatedAt added in v0.86.0

func (x *Notebook) GetCreatedAt() int64

func (*Notebook) GetEnvs added in v0.86.0

func (x *Notebook) GetEnvs() map[string]string

func (*Notebook) GetError added in v0.86.0

func (x *Notebook) GetError() *Notebook_Error

func (*Notebook) GetId added in v0.86.0

func (x *Notebook) GetId() string

func (*Notebook) GetImage added in v0.86.0

func (x *Notebook) GetImage() string

func (*Notebook) GetName added in v0.86.0

func (x *Notebook) GetName() string

func (*Notebook) GetResources added in v0.86.0

func (x *Notebook) GetResources() *Resources

func (*Notebook) GetStartedAt added in v0.86.0

func (x *Notebook) GetStartedAt() int64

func (*Notebook) GetStatus added in v0.86.0

func (x *Notebook) GetStatus() string

func (*Notebook) GetStoppedAt added in v0.86.0

func (x *Notebook) GetStoppedAt() int64

func (*Notebook) ProtoMessage added in v0.86.0

func (*Notebook) ProtoMessage()

func (*Notebook) ProtoReflect added in v0.86.0

func (x *Notebook) ProtoReflect() protoreflect.Message

func (*Notebook) Reset added in v0.86.0

func (x *Notebook) Reset()

func (*Notebook) String added in v0.86.0

func (x *Notebook) String() string

type Notebook_Error added in v0.86.0

type Notebook_Error struct {
	Code    string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*Notebook_Error) Descriptor deprecated added in v0.86.0

func (*Notebook_Error) Descriptor() ([]byte, []int)

Deprecated: Use Notebook_Error.ProtoReflect.Descriptor instead.

func (*Notebook_Error) GetCode added in v0.86.0

func (x *Notebook_Error) GetCode() string

func (*Notebook_Error) GetMessage added in v0.86.0

func (x *Notebook_Error) GetMessage() string

func (*Notebook_Error) ProtoMessage added in v0.86.0

func (*Notebook_Error) ProtoMessage()

func (*Notebook_Error) ProtoReflect added in v0.86.0

func (x *Notebook_Error) ProtoReflect() protoreflect.Message

func (*Notebook_Error) Reset added in v0.86.0

func (x *Notebook_Error) Reset()

func (*Notebook_Error) String added in v0.86.0

func (x *Notebook_Error) String() string

type Resources added in v0.86.0

type Resources struct {
	CpuMilicore      *Resources_Quantity `protobuf:"bytes,1,opt,name=cpu_milicore,json=cpuMilicore,proto3" json:"cpu_milicore,omitempty"`
	MemoryMegabytes  *Resources_Quantity `protobuf:"bytes,2,opt,name=memory_megabytes,json=memoryMegabytes,proto3" json:"memory_megabytes,omitempty"`
	StorageMegabytes *Resources_Quantity `protobuf:"bytes,3,opt,name=storage_megabytes,json=storageMegabytes,proto3" json:"storage_megabytes,omitempty"`
	GpuCount         int32               `protobuf:"varint,4,opt,name=gpu_count,json=gpuCount,proto3" json:"gpu_count,omitempty"`
	// contains filtered or unexported fields
}

func (*Resources) Descriptor deprecated added in v0.86.0

func (*Resources) Descriptor() ([]byte, []int)

Deprecated: Use Resources.ProtoReflect.Descriptor instead.

func (*Resources) GetCpuMilicore added in v0.86.0

func (x *Resources) GetCpuMilicore() *Resources_Quantity

func (*Resources) GetGpuCount added in v0.86.0

func (x *Resources) GetGpuCount() int32

func (*Resources) GetMemoryMegabytes added in v0.86.0

func (x *Resources) GetMemoryMegabytes() *Resources_Quantity

func (*Resources) GetStorageMegabytes added in v0.86.0

func (x *Resources) GetStorageMegabytes() *Resources_Quantity

func (*Resources) ProtoMessage added in v0.86.0

func (*Resources) ProtoMessage()

func (*Resources) ProtoReflect added in v0.86.0

func (x *Resources) ProtoReflect() protoreflect.Message

func (*Resources) Reset added in v0.86.0

func (x *Resources) Reset()

func (*Resources) String added in v0.86.0

func (x *Resources) String() string

type Resources_Quantity added in v0.86.0

type Resources_Quantity struct {
	Requests int32 `protobuf:"varint,1,opt,name=requests,proto3" json:"requests,omitempty"`
	Limits   int32 `protobuf:"varint,2,opt,name=limits,proto3" json:"limits,omitempty"`
	// contains filtered or unexported fields
}

func (*Resources_Quantity) Descriptor deprecated added in v0.86.0

func (*Resources_Quantity) Descriptor() ([]byte, []int)

Deprecated: Use Resources_Quantity.ProtoReflect.Descriptor instead.

func (*Resources_Quantity) GetLimits added in v0.86.0

func (x *Resources_Quantity) GetLimits() int32

func (*Resources_Quantity) GetRequests added in v0.86.0

func (x *Resources_Quantity) GetRequests() int32

func (*Resources_Quantity) ProtoMessage added in v0.86.0

func (*Resources_Quantity) ProtoMessage()

func (*Resources_Quantity) ProtoReflect added in v0.86.0

func (x *Resources_Quantity) ProtoReflect() protoreflect.Message

func (*Resources_Quantity) Reset added in v0.86.0

func (x *Resources_Quantity) Reset()

func (*Resources_Quantity) String added in v0.86.0

func (x *Resources_Quantity) String() string

type StartNotebookRequest added in v0.86.0

type StartNotebookRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*StartNotebookRequest) Descriptor deprecated added in v0.86.0

func (*StartNotebookRequest) Descriptor() ([]byte, []int)

Deprecated: Use StartNotebookRequest.ProtoReflect.Descriptor instead.

func (*StartNotebookRequest) GetId added in v0.86.0

func (x *StartNotebookRequest) GetId() string

func (*StartNotebookRequest) ProtoMessage added in v0.86.0

func (*StartNotebookRequest) ProtoMessage()

func (*StartNotebookRequest) ProtoReflect added in v0.86.0

func (x *StartNotebookRequest) ProtoReflect() protoreflect.Message

func (*StartNotebookRequest) Reset added in v0.86.0

func (x *StartNotebookRequest) Reset()

func (*StartNotebookRequest) String added in v0.86.0

func (x *StartNotebookRequest) String() string

type StartNotebookResponse added in v0.86.0

type StartNotebookResponse struct {
	// contains filtered or unexported fields
}

func (*StartNotebookResponse) Descriptor deprecated added in v0.86.0

func (*StartNotebookResponse) Descriptor() ([]byte, []int)

Deprecated: Use StartNotebookResponse.ProtoReflect.Descriptor instead.

func (*StartNotebookResponse) ProtoMessage added in v0.86.0

func (*StartNotebookResponse) ProtoMessage()

func (*StartNotebookResponse) ProtoReflect added in v0.86.0

func (x *StartNotebookResponse) ProtoReflect() protoreflect.Message

func (*StartNotebookResponse) Reset added in v0.86.0

func (x *StartNotebookResponse) Reset()

func (*StartNotebookResponse) String added in v0.86.0

func (x *StartNotebookResponse) String() string

type StopNotebookRequest added in v0.86.0

type StopNotebookRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*StopNotebookRequest) Descriptor deprecated added in v0.86.0

func (*StopNotebookRequest) Descriptor() ([]byte, []int)

Deprecated: Use StopNotebookRequest.ProtoReflect.Descriptor instead.

func (*StopNotebookRequest) GetId added in v0.86.0

func (x *StopNotebookRequest) GetId() string

func (*StopNotebookRequest) ProtoMessage added in v0.86.0

func (*StopNotebookRequest) ProtoMessage()

func (*StopNotebookRequest) ProtoReflect added in v0.86.0

func (x *StopNotebookRequest) ProtoReflect() protoreflect.Message

func (*StopNotebookRequest) Reset added in v0.86.0

func (x *StopNotebookRequest) Reset()

func (*StopNotebookRequest) String added in v0.86.0

func (x *StopNotebookRequest) String() string

type StopNotebookResponse added in v0.86.0

type StopNotebookResponse struct {
	// contains filtered or unexported fields
}

func (*StopNotebookResponse) Descriptor deprecated added in v0.86.0

func (*StopNotebookResponse) Descriptor() ([]byte, []int)

Deprecated: Use StopNotebookResponse.ProtoReflect.Descriptor instead.

func (*StopNotebookResponse) ProtoMessage added in v0.86.0

func (*StopNotebookResponse) ProtoMessage()

func (*StopNotebookResponse) ProtoReflect added in v0.86.0

func (x *StopNotebookResponse) ProtoReflect() protoreflect.Message

func (*StopNotebookResponse) Reset added in v0.86.0

func (x *StopNotebookResponse) Reset()

func (*StopNotebookResponse) String added in v0.86.0

func (x *StopNotebookResponse) String() string

type UnimplementedFineTuningServiceServer

type UnimplementedFineTuningServiceServer struct {
}

UnimplementedFineTuningServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedFineTuningServiceServer) CancelJob

func (UnimplementedFineTuningServiceServer) CreateJob

func (UnimplementedFineTuningServiceServer) GetJob added in v0.77.0

func (UnimplementedFineTuningServiceServer) ListJobs

type UnimplementedWorkspaceServiceServer added in v0.86.0

type UnimplementedWorkspaceServiceServer struct {
}

UnimplementedWorkspaceServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedWorkspaceServiceServer) CreateNotebook added in v0.86.0

func (UnimplementedWorkspaceServiceServer) DeleteNotebook added in v0.86.0

func (UnimplementedWorkspaceServiceServer) GetNotebook added in v0.86.0

func (UnimplementedWorkspaceServiceServer) ListNotebooks added in v0.86.0

func (UnimplementedWorkspaceServiceServer) StartNotebook added in v0.86.0

func (UnimplementedWorkspaceServiceServer) StopNotebook added in v0.86.0

type UnsafeFineTuningServiceServer

type UnsafeFineTuningServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeFineTuningServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FineTuningServiceServer will result in compilation errors.

type UnsafeWorkspaceServiceServer added in v0.86.0

type UnsafeWorkspaceServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeWorkspaceServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to WorkspaceServiceServer will result in compilation errors.

type WorkspaceServiceClient added in v0.86.0

type WorkspaceServiceClient interface {
	CreateNotebook(ctx context.Context, in *CreateNotebookRequest, opts ...grpc.CallOption) (*Notebook, error)
	ListNotebooks(ctx context.Context, in *ListNotebooksRequest, opts ...grpc.CallOption) (*ListNotebooksResponse, error)
	GetNotebook(ctx context.Context, in *GetNotebookRequest, opts ...grpc.CallOption) (*Notebook, error)
	DeleteNotebook(ctx context.Context, in *DeleteNotebookRequest, opts ...grpc.CallOption) (*DeleteNotebookResponse, error)
	StopNotebook(ctx context.Context, in *StopNotebookRequest, opts ...grpc.CallOption) (*StopNotebookResponse, error)
	StartNotebook(ctx context.Context, in *StartNotebookRequest, opts ...grpc.CallOption) (*StartNotebookResponse, error)
}

WorkspaceServiceClient is the client API for WorkspaceService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewWorkspaceServiceClient added in v0.86.0

func NewWorkspaceServiceClient(cc grpc.ClientConnInterface) WorkspaceServiceClient

type WorkspaceServiceServer added in v0.86.0

type WorkspaceServiceServer interface {
	CreateNotebook(context.Context, *CreateNotebookRequest) (*Notebook, error)
	ListNotebooks(context.Context, *ListNotebooksRequest) (*ListNotebooksResponse, error)
	GetNotebook(context.Context, *GetNotebookRequest) (*Notebook, error)
	DeleteNotebook(context.Context, *DeleteNotebookRequest) (*DeleteNotebookResponse, error)
	StopNotebook(context.Context, *StopNotebookRequest) (*StopNotebookResponse, error)
	StartNotebook(context.Context, *StartNotebookRequest) (*StartNotebookResponse, error)
	// contains filtered or unexported methods
}

WorkspaceServiceServer is the server API for WorkspaceService service. All implementations must embed UnimplementedWorkspaceServiceServer for forward compatibility

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL