// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.1 // - protoc v5.29.3 // source: llm.proto package pb import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. // Requires gRPC-Go v1.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( LLMService_GenerateStream_FullMethodName = "/cyberverse.LLMService/GenerateStream" ) // LLMServiceClient is the client API for LLMService 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 LLMServiceClient interface { GenerateStream(ctx context.Context, in *LLMRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[LLMChunk], error) } type lLMServiceClient struct { cc grpc.ClientConnInterface } func NewLLMServiceClient(cc grpc.ClientConnInterface) LLMServiceClient { return &lLMServiceClient{cc} } func (c *lLMServiceClient) GenerateStream(ctx context.Context, in *LLMRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[LLMChunk], error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) stream, err := c.cc.NewStream(ctx, &LLMService_ServiceDesc.Streams[0], LLMService_GenerateStream_FullMethodName, cOpts...) if err != nil { return nil, err } x := &grpc.GenericClientStream[LLMRequest, LLMChunk]{ClientStream: stream} if err := x.ClientStream.SendMsg(in); err != nil { return nil, err } if err := x.ClientStream.CloseSend(); err != nil { return nil, err } return x, nil } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type LLMService_GenerateStreamClient = grpc.ServerStreamingClient[LLMChunk] // LLMServiceServer is the server API for LLMService service. // All implementations must embed UnimplementedLLMServiceServer // for forward compatibility. type LLMServiceServer interface { GenerateStream(*LLMRequest, grpc.ServerStreamingServer[LLMChunk]) error mustEmbedUnimplementedLLMServiceServer() } // UnimplementedLLMServiceServer must be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedLLMServiceServer struct{} func (UnimplementedLLMServiceServer) GenerateStream(*LLMRequest, grpc.ServerStreamingServer[LLMChunk]) error { return status.Error(codes.Unimplemented, "method GenerateStream not implemented") } func (UnimplementedLLMServiceServer) mustEmbedUnimplementedLLMServiceServer() {} func (UnimplementedLLMServiceServer) testEmbeddedByValue() {} // UnsafeLLMServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to LLMServiceServer will // result in compilation errors. type UnsafeLLMServiceServer interface { mustEmbedUnimplementedLLMServiceServer() } func RegisterLLMServiceServer(s grpc.ServiceRegistrar, srv LLMServiceServer) { // If the following call panics, it indicates UnimplementedLLMServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&LLMService_ServiceDesc, srv) } func _LLMService_GenerateStream_Handler(srv interface{}, stream grpc.ServerStream) error { m := new(LLMRequest) if err := stream.RecvMsg(m); err != nil { return err } return srv.(LLMServiceServer).GenerateStream(m, &grpc.GenericServerStream[LLMRequest, LLMChunk]{ServerStream: stream}) } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type LLMService_GenerateStreamServer = grpc.ServerStreamingServer[LLMChunk] // LLMService_ServiceDesc is the grpc.ServiceDesc for LLMService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var LLMService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "cyberverse.LLMService", HandlerType: (*LLMServiceServer)(nil), Methods: []grpc.MethodDesc{}, Streams: []grpc.StreamDesc{ { StreamName: "GenerateStream", Handler: _LLMService_GenerateStream_Handler, ServerStreams: true, }, }, Metadata: "llm.proto", }