- Implemented V2 sandbox initialization in the assistant loading process, allowing for standalone sandbox.yao configuration. - Added support for V2 sandbox execution paths in the Assistant's Stream method, differentiating between V1 and V2 sandboxes. - Introduced comprehensive tests for V2 sandbox configurations, ensuring correct loading and execution behavior. - Updated the context and types to accommodate V2 sandbox features, including system information and workspace management. Made-with: Cursor
121 lines
4.3 KiB
Go
121 lines
4.3 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.6.1
|
|
// - protoc v4.25.0
|
|
// source: serverinfo.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 (
|
|
ServerInfo_GetInfo_FullMethodName = "/serverinfo.ServerInfo/GetInfo"
|
|
)
|
|
|
|
// ServerInfoClient is the client API for ServerInfo 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 ServerInfoClient interface {
|
|
GetInfo(ctx context.Context, in *GetInfoRequest, opts ...grpc.CallOption) (*GetInfoResponse, error)
|
|
}
|
|
|
|
type serverInfoClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewServerInfoClient(cc grpc.ClientConnInterface) ServerInfoClient {
|
|
return &serverInfoClient{cc}
|
|
}
|
|
|
|
func (c *serverInfoClient) GetInfo(ctx context.Context, in *GetInfoRequest, opts ...grpc.CallOption) (*GetInfoResponse, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(GetInfoResponse)
|
|
err := c.cc.Invoke(ctx, ServerInfo_GetInfo_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// ServerInfoServer is the server API for ServerInfo service.
|
|
// All implementations must embed UnimplementedServerInfoServer
|
|
// for forward compatibility.
|
|
type ServerInfoServer interface {
|
|
GetInfo(context.Context, *GetInfoRequest) (*GetInfoResponse, error)
|
|
mustEmbedUnimplementedServerInfoServer()
|
|
}
|
|
|
|
// UnimplementedServerInfoServer 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 UnimplementedServerInfoServer struct{}
|
|
|
|
func (UnimplementedServerInfoServer) GetInfo(context.Context, *GetInfoRequest) (*GetInfoResponse, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method GetInfo not implemented")
|
|
}
|
|
func (UnimplementedServerInfoServer) mustEmbedUnimplementedServerInfoServer() {}
|
|
func (UnimplementedServerInfoServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeServerInfoServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to ServerInfoServer will
|
|
// result in compilation errors.
|
|
type UnsafeServerInfoServer interface {
|
|
mustEmbedUnimplementedServerInfoServer()
|
|
}
|
|
|
|
func RegisterServerInfoServer(s grpc.ServiceRegistrar, srv ServerInfoServer) {
|
|
// If the following call panics, it indicates UnimplementedServerInfoServer 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(&ServerInfo_ServiceDesc, srv)
|
|
}
|
|
|
|
func _ServerInfo_GetInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetInfoRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ServerInfoServer).GetInfo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: ServerInfo_GetInfo_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ServerInfoServer).GetInfo(ctx, req.(*GetInfoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// ServerInfo_ServiceDesc is the grpc.ServiceDesc for ServerInfo service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var ServerInfo_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "serverinfo.ServerInfo",
|
|
HandlerType: (*ServerInfoServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetInfo",
|
|
Handler: _ServerInfo_GetInfo_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "serverinfo.proto",
|
|
}
|