UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

32 lines (28 loc) 660 B
// Original file: proto/channelz.proto import type { Long } from '@grpc/proto-loader'; /** * SocketRef is a reference to a Socket. */ export interface SocketRef { /** * The globally unique id for this socket. Must be a positive number. */ 'socket_id'?: (number | string | Long); /** * An optional name associated with the socket. */ 'name'?: (string); } /** * SocketRef is a reference to a Socket. */ export interface SocketRef__Output { /** * The globally unique id for this socket. Must be a positive number. */ 'socket_id': (string); /** * An optional name associated with the socket. */ 'name': (string); }