---------------------------------------------------------------------- This is the API documentation for the gdtest_google library. ---------------------------------------------------------------------- ## Functions Utility functions connect(host: str, port: int = 8080) -> bool Connect to a remote server. Args: host: The hostname or IP address to connect to. port: The port number. Defaults to 8080. Returns: True if the connection was successful. Raises: ConnectionError: If the server is unreachable. send_message(msg: str, priority: int = 0) -> str Send a message to the connected server. Args: msg: The message content to send. priority: Message priority level (0=normal, 1=high). Returns: A confirmation string with the message ID. Examples: >>> send_message("hello") 'msg-001'